SlideShare a Scribd company logo
JQUERY TUTORIALS
JQUERY TUTORIALS
What is
JQuery?
jQuery is not a language,
but it is a well written
JavaScript code. As
quoted on official jQuery
website,
"it is a fast and concise
JavaScript Library that
simplifies HTML
document traversing,
event handling,
animating, and Ajax
interactions for rapid web
development”.
In order to work with JQuery, you should be aware of the basics of
JavaScript, HTML and CSS.
Why Jquery?
It helps to improve the performance
of the application
It helps to develop most browser
compatible web page
It helps to implement UI related
critical functionality without writing
hundreds of lines of codes
It is fast
It is extensible – jQuery can be
extended to implement customized
behavior
Other advantages of jQuery are:
No need to learn fresh new syntaxes
to use jQuery, knowing simple
JavaScript syntax is enough
Simple and cleaner code, no need
to write several lines of codes to
achieve complex functionality
JQuery is very compact and well
written JavaScript code that increases
the productivity of the developer by
enabling them to achieve critical UI
functionality by writing very small
amount of code.
How to use
JQuery?
jQuery usually comes as a
single JavaScript file
containing everything
comes out of the box with
jQuery. It can be included
within a web page using the
following mark-up:
How to load JQuery?
How to execute JQuery code?
There are two ways you may want to execute jQuery codes.
1st
The benefit of executing jQuery
code in this way is that it doesn’t
wait for the whole page to load
completely, so in case you want
the user to see the effects as
soon as the corresponding
elements are loaded, you can
use this.
However, the disadvantage is
that if the element on which
jQuery has to execute has not
loaded, then it will error out or
you will not get the desired
result; so while using this way of
executing jQuery code, you will
have to make sure that the
element on which you want to
work with jQuery is loaded first
(you can place your jQuery code
right after your HTML element).
2nd
This is the better and safer
way to execute jQuery. This
makes sure that jQuery code
will execute only if complete
page has been loaded in the
browser so you are rest
assured that user will not see
any undesired behavior on
the page.
Ease of use
Large library
Strong opensource community
Great documentation and tutorials
Ajax support
Functionality maybe
JQuery javascript file required
JQuery provides a simple way to select single element or group of
elements. You can access element by type (div, span, p), id, CSS
class and attribute, etc.
SELECTORS
SLIDING EFFECT
Example…JQuery provides three methods to
show or hide elements in sliding
behavior.
SlideDown(speed, callback): This
method gradually increases the
height of the elements, from hidden
to visible.
SlideUp(speed, callback): This
method gradually decreases the
height of the elements, from visible
to hidden.
SlideToggle(speed, callback): This
method toggles between SildeUp()
and SlideDown() for selected
elements.
I created Box using DIVs and choose DIV
having id “contentArea” for sliding.
Register click event of the HTML element and call
SlideToggle and SlidUp method for the
“contentArea”. More details of this example are
available in the attached project.
Fade Effect
Example…JQuery also provides four methods to
gradually change the opacity of the
selected element using Fade effect.
fadeTo(speed, opacity, callback): This
method changes the opacity of selected
elements to specified opacity.
fadeIn(speed, callback): This method
gradually increases the opacity of the
elements, from hidden to visible.
fadeOut(speed, callback): This method
gradually decreases the opacity of the
elements, from visible to hidden.
fadeToggle(speed, callback): This method
toggles between FadeIn() and FadeOut()
for selected elements.
I will set the opacity of the image on hover.
Add images in to the DIV and assign id
“fadeExp1” to div.
In ready() function, set the default opacity of all images
using $(“#fadeExp1 img”).fadeTo(0, 0.3); statement.
Then register Hover event on each image and provide
two functions in it, one for mouse over and one for
mouse out and set the opacity of element there.
Animation Effect
Example…
JQuery also provides an easy way to
animate element. the syntax of
animate method is .animate(
properties, [duration], [easing],
[complete]).
properties: A map of CSS
properties, which changes
during animation
duration: String or number
to determine the duration of
the animation
easing: The name of easing
function to use for the
transition
complete: A function to call
on the complete of
animation
A very cool and simple example for the icons list in
your website, simply register hover event on
the image. On mover over, set top=-15 and on
mouse out set top=0 again.
Don’t forget to set the relative position of the
image.
F
I
n
Mr. Ardee Aram
Moiselle Sarah C. Roxas
CPE 406
PROFESSIONAL ELECTIVE 1

More Related Content

What's hot (20)

Intro to ReactJS
Intro to ReactJSIntro to ReactJS
Intro to ReactJS
Harvard Web Working Group
 
React - Start learning today
React - Start learning today React - Start learning today
React - Start learning today
Nitin Tyagi
 
jQuery basics for Beginners
jQuery basics for BeginnersjQuery basics for Beginners
jQuery basics for Beginners
Pooja Saxena
 
React JS - A quick introduction tutorial
React JS - A quick introduction tutorialReact JS - A quick introduction tutorial
React JS - A quick introduction tutorial
Mohammed Fazuluddin
 
20180518 QNAP Seminar - Introduction to React Native
20180518 QNAP Seminar - Introduction to React Native20180518 QNAP Seminar - Introduction to React Native
20180518 QNAP Seminar - Introduction to React Native
Eric Deng
 
Angular js
Angular jsAngular js
Angular js
Behind D Walls
 
JOSA TechTalks - Better Web Apps with React and Redux
JOSA TechTalks - Better Web Apps with React and ReduxJOSA TechTalks - Better Web Apps with React and Redux
JOSA TechTalks - Better Web Apps with React and Redux
Jordan Open Source Association
 
jQuery Effects
jQuery EffectsjQuery Effects
jQuery Effects
Adelon Zeta
 
ReactJs presentation
ReactJs presentationReactJs presentation
ReactJs presentation
nishasowdri
 
Substance Java One 2007 Community Corner
Substance Java One 2007  Community  CornerSubstance Java One 2007  Community  Corner
Substance Java One 2007 Community Corner
Kirill Grouchnikov
 
AngularJS 2.0
AngularJS 2.0AngularJS 2.0
AngularJS 2.0
Boyan Mihaylov
 
AngularJS intro
AngularJS introAngularJS intro
AngularJS intro
dizabl
 
React JS: A Secret Preview
React JS: A Secret PreviewReact JS: A Secret Preview
React JS: A Secret Preview
valuebound
 
React Native Introduction: Making Real iOS and Android Mobile App By JavaScript
React Native Introduction: Making Real iOS and Android Mobile App By JavaScriptReact Native Introduction: Making Real iOS and Android Mobile App By JavaScript
React Native Introduction: Making Real iOS and Android Mobile App By JavaScript
Kobkrit Viriyayudhakorn
 
Introduction to React JS
Introduction to React JSIntroduction to React JS
Introduction to React JS
Arnold Asllani
 
Angular Data Binding
Angular Data BindingAngular Data Binding
Angular Data Binding
Jennifer Estrada
 
Learn react-js
Learn react-jsLearn react-js
Learn react-js
C...L, NESPRESSO, WAFAASSURANCE, SOFRECOM ORANGE
 
reactJS
reactJSreactJS
reactJS
Syam Santhosh
 
Getting Started with React-Nathan Smith
Getting Started with React-Nathan SmithGetting Started with React-Nathan Smith
Getting Started with React-Nathan Smith
TandemSeven
 
Intro to React
Intro to ReactIntro to React
Intro to React
Eric Westfall
 
React - Start learning today
React - Start learning today React - Start learning today
React - Start learning today
Nitin Tyagi
 
jQuery basics for Beginners
jQuery basics for BeginnersjQuery basics for Beginners
jQuery basics for Beginners
Pooja Saxena
 
React JS - A quick introduction tutorial
React JS - A quick introduction tutorialReact JS - A quick introduction tutorial
React JS - A quick introduction tutorial
Mohammed Fazuluddin
 
20180518 QNAP Seminar - Introduction to React Native
20180518 QNAP Seminar - Introduction to React Native20180518 QNAP Seminar - Introduction to React Native
20180518 QNAP Seminar - Introduction to React Native
Eric Deng
 
ReactJs presentation
ReactJs presentationReactJs presentation
ReactJs presentation
nishasowdri
 
Substance Java One 2007 Community Corner
Substance Java One 2007  Community  CornerSubstance Java One 2007  Community  Corner
Substance Java One 2007 Community Corner
Kirill Grouchnikov
 
AngularJS intro
AngularJS introAngularJS intro
AngularJS intro
dizabl
 
React JS: A Secret Preview
React JS: A Secret PreviewReact JS: A Secret Preview
React JS: A Secret Preview
valuebound
 
React Native Introduction: Making Real iOS and Android Mobile App By JavaScript
React Native Introduction: Making Real iOS and Android Mobile App By JavaScriptReact Native Introduction: Making Real iOS and Android Mobile App By JavaScript
React Native Introduction: Making Real iOS and Android Mobile App By JavaScript
Kobkrit Viriyayudhakorn
 
Introduction to React JS
Introduction to React JSIntroduction to React JS
Introduction to React JS
Arnold Asllani
 
Getting Started with React-Nathan Smith
Getting Started with React-Nathan SmithGetting Started with React-Nathan Smith
Getting Started with React-Nathan Smith
TandemSeven
 

Viewers also liked (18)

Facebook timeline
Facebook timelineFacebook timeline
Facebook timeline
randiabels
 
Magnetic Field Analyzers by ACMAS Technologies Pvt Ltd.
Magnetic Field Analyzers by ACMAS Technologies Pvt Ltd.Magnetic Field Analyzers by ACMAS Technologies Pvt Ltd.
Magnetic Field Analyzers by ACMAS Technologies Pvt Ltd.
Acmas Technologies Pvt. Ltd.
 
Palm sunday april 1, 2012 (2)
Palm sunday april 1, 2012 (2)Palm sunday april 1, 2012 (2)
Palm sunday april 1, 2012 (2)
calvarymc
 
Bible study001
Bible study001Bible study001
Bible study001
Xplore Social
 
SIP Photo Slideshow
SIP Photo SlideshowSIP Photo Slideshow
SIP Photo Slideshow
katie-masoninnovation
 
Causesof wwi
Causesof wwiCausesof wwi
Causesof wwi
tar358
 
Economical Hydrogen per Oxide Detector by ACMAS Technologies Pvt Ltd.
Economical Hydrogen per Oxide Detector by ACMAS Technologies Pvt Ltd.Economical Hydrogen per Oxide Detector by ACMAS Technologies Pvt Ltd.
Economical Hydrogen per Oxide Detector by ACMAS Technologies Pvt Ltd.
Acmas Technologies Pvt. Ltd.
 
Facebook timeline details
Facebook timeline detailsFacebook timeline details
Facebook timeline details
randiabels
 
Blood Bank Refrigerator (4 °C) by ACMAS Technologies Pvt Ltd.
Blood Bank Refrigerator (4 °C) by ACMAS Technologies Pvt Ltd.Blood Bank Refrigerator (4 °C) by ACMAS Technologies Pvt Ltd.
Blood Bank Refrigerator (4 °C) by ACMAS Technologies Pvt Ltd.
Acmas Technologies Pvt. Ltd.
 
Wwi battles and outcomes
Wwi battles and outcomesWwi battles and outcomes
Wwi battles and outcomes
tar358
 
Comcast Event
Comcast EventComcast Event
Comcast Event
randiabels
 
Linhart Public Relations and our Pets
Linhart Public Relations and our PetsLinhart Public Relations and our Pets
Linhart Public Relations and our Pets
randiabels
 
Linhart Public Relations and our Pets
Linhart Public Relations and our PetsLinhart Public Relations and our Pets
Linhart Public Relations and our Pets
randiabels
 
Standardized Test Prep
Standardized Test PrepStandardized Test Prep
Standardized Test Prep
tar358
 
Social Studies Stadardized Test Prep.
Social Studies Stadardized Test Prep.Social Studies Stadardized Test Prep.
Social Studies Stadardized Test Prep.
tar358
 
Facebook timeline
Facebook timelineFacebook timeline
Facebook timeline
randiabels
 
Facebook timeline
Facebook timelineFacebook timeline
Facebook timeline
randiabels
 
Magnetic Field Analyzers by ACMAS Technologies Pvt Ltd.
Magnetic Field Analyzers by ACMAS Technologies Pvt Ltd.Magnetic Field Analyzers by ACMAS Technologies Pvt Ltd.
Magnetic Field Analyzers by ACMAS Technologies Pvt Ltd.
Acmas Technologies Pvt. Ltd.
 
Palm sunday april 1, 2012 (2)
Palm sunday april 1, 2012 (2)Palm sunday april 1, 2012 (2)
Palm sunday april 1, 2012 (2)
calvarymc
 
Causesof wwi
Causesof wwiCausesof wwi
Causesof wwi
tar358
 
Economical Hydrogen per Oxide Detector by ACMAS Technologies Pvt Ltd.
Economical Hydrogen per Oxide Detector by ACMAS Technologies Pvt Ltd.Economical Hydrogen per Oxide Detector by ACMAS Technologies Pvt Ltd.
Economical Hydrogen per Oxide Detector by ACMAS Technologies Pvt Ltd.
Acmas Technologies Pvt. Ltd.
 
Facebook timeline details
Facebook timeline detailsFacebook timeline details
Facebook timeline details
randiabels
 
Blood Bank Refrigerator (4 °C) by ACMAS Technologies Pvt Ltd.
Blood Bank Refrigerator (4 °C) by ACMAS Technologies Pvt Ltd.Blood Bank Refrigerator (4 °C) by ACMAS Technologies Pvt Ltd.
Blood Bank Refrigerator (4 °C) by ACMAS Technologies Pvt Ltd.
Acmas Technologies Pvt. Ltd.
 
Wwi battles and outcomes
Wwi battles and outcomesWwi battles and outcomes
Wwi battles and outcomes
tar358
 
Linhart Public Relations and our Pets
Linhart Public Relations and our PetsLinhart Public Relations and our Pets
Linhart Public Relations and our Pets
randiabels
 
Linhart Public Relations and our Pets
Linhart Public Relations and our PetsLinhart Public Relations and our Pets
Linhart Public Relations and our Pets
randiabels
 
Standardized Test Prep
Standardized Test PrepStandardized Test Prep
Standardized Test Prep
tar358
 
Social Studies Stadardized Test Prep.
Social Studies Stadardized Test Prep.Social Studies Stadardized Test Prep.
Social Studies Stadardized Test Prep.
tar358
 
Facebook timeline
Facebook timelineFacebook timeline
Facebook timeline
randiabels
 

Similar to JQUERY TUTORIALS (20)

jQuery Interview Questions By ScholarHat.pdf
jQuery Interview Questions By ScholarHat.pdfjQuery Interview Questions By ScholarHat.pdf
jQuery Interview Questions By ScholarHat.pdf
Scholarhat
 
Jquery
JqueryJquery
Jquery
baabtra.com - No. 1 supplier of quality freshers
 
J query intro_29thsep_alok
J query intro_29thsep_alokJ query intro_29thsep_alok
J query intro_29thsep_alok
SPRITLE SOFTWARE PRIVATE LIMIT ED
 
Starting with jQuery
Starting with jQueryStarting with jQuery
Starting with jQuery
Anil Kumar
 
J query
J queryJ query
J query
Ramakrishna kapa
 
Jquery
Jquery Jquery
Jquery
eginni
 
J query presentation
J query presentationJ query presentation
J query presentation
sawarkar17
 
J query presentation
J query presentationJ query presentation
J query presentation
akanksha17
 
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD CombinationLotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
Sean Burgess
 
Top 45 jQuery Interview Questions and Answers | Edureka
Top 45 jQuery Interview Questions and Answers | EdurekaTop 45 jQuery Interview Questions and Answers | Edureka
Top 45 jQuery Interview Questions and Answers | Edureka
Edureka!
 
Implementing auto complete using JQuery
Implementing auto complete using JQueryImplementing auto complete using JQuery
Implementing auto complete using JQuery
Bhushan Mulmule
 
Jquery tutorial-beginners
Jquery tutorial-beginnersJquery tutorial-beginners
Jquery tutorial-beginners
Isfand yar Khan
 
Getting Started with jQuery
Getting Started with jQueryGetting Started with jQuery
Getting Started with jQuery
Laila Buncab
 
jQuery - the world's most popular java script library comes to XPages
jQuery - the world's most popular java script library comes to XPagesjQuery - the world's most popular java script library comes to XPages
jQuery - the world's most popular java script library comes to XPages
Mark Roden
 
Fewd week4 slides
Fewd week4 slidesFewd week4 slides
Fewd week4 slides
William Myers
 
Jquery
JqueryJquery
Jquery
Girish Srivastava
 
Jquery
JqueryJquery
Jquery
baabtra.com - No. 1 supplier of quality freshers
 
Jquery
JqueryJquery
Jquery
Vineeth Vijayan
 
Jquery beltranhomewrok
Jquery beltranhomewrokJquery beltranhomewrok
Jquery beltranhomewrok
Catherine Beltran
 
Jquery beltranhomewrok
Jquery beltranhomewrokJquery beltranhomewrok
Jquery beltranhomewrok
Catherine Beltran
 

Recently uploaded (20)

Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In FranceManifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
chb3
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
 
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul
 
How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?
Daniel Lehner
 
Quantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur MorganQuantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur Morgan
Arthur Morgan
 
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
SOFTTECHHUB
 
HCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser EnvironmentsHCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser Environments
panagenda
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
 
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Aqusag Technologies
 
Drupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy ConsumptionDrupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy Consumption
Exove
 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
 
What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...
Vishnu Singh Chundawat
 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
 
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-UmgebungenHCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
panagenda
 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In FranceManifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
chb3
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
 
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul
 
How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?
Daniel Lehner
 
Quantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur MorganQuantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur Morgan
Arthur Morgan
 
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
SOFTTECHHUB
 
HCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser EnvironmentsHCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser Environments
panagenda
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
 
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Aqusag Technologies
 
Drupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy ConsumptionDrupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy Consumption
Exove
 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
 
What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...
Vishnu Singh Chundawat
 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
 
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-UmgebungenHCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
panagenda
 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 

JQUERY TUTORIALS

  • 3. What is JQuery? jQuery is not a language, but it is a well written JavaScript code. As quoted on official jQuery website, "it is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development”. In order to work with JQuery, you should be aware of the basics of JavaScript, HTML and CSS.
  • 4. Why Jquery? It helps to improve the performance of the application It helps to develop most browser compatible web page It helps to implement UI related critical functionality without writing hundreds of lines of codes It is fast It is extensible – jQuery can be extended to implement customized behavior Other advantages of jQuery are: No need to learn fresh new syntaxes to use jQuery, knowing simple JavaScript syntax is enough Simple and cleaner code, no need to write several lines of codes to achieve complex functionality JQuery is very compact and well written JavaScript code that increases the productivity of the developer by enabling them to achieve critical UI functionality by writing very small amount of code.
  • 5. How to use JQuery? jQuery usually comes as a single JavaScript file containing everything comes out of the box with jQuery. It can be included within a web page using the following mark-up: How to load JQuery?
  • 6. How to execute JQuery code? There are two ways you may want to execute jQuery codes.
  • 7. 1st The benefit of executing jQuery code in this way is that it doesn’t wait for the whole page to load completely, so in case you want the user to see the effects as soon as the corresponding elements are loaded, you can use this. However, the disadvantage is that if the element on which jQuery has to execute has not loaded, then it will error out or you will not get the desired result; so while using this way of executing jQuery code, you will have to make sure that the element on which you want to work with jQuery is loaded first (you can place your jQuery code right after your HTML element).
  • 8. 2nd This is the better and safer way to execute jQuery. This makes sure that jQuery code will execute only if complete page has been loaded in the browser so you are rest assured that user will not see any undesired behavior on the page.
  • 9. Ease of use Large library Strong opensource community Great documentation and tutorials Ajax support Functionality maybe JQuery javascript file required
  • 10. JQuery provides a simple way to select single element or group of elements. You can access element by type (div, span, p), id, CSS class and attribute, etc. SELECTORS
  • 12. Example…JQuery provides three methods to show or hide elements in sliding behavior. SlideDown(speed, callback): This method gradually increases the height of the elements, from hidden to visible. SlideUp(speed, callback): This method gradually decreases the height of the elements, from visible to hidden. SlideToggle(speed, callback): This method toggles between SildeUp() and SlideDown() for selected elements.
  • 13. I created Box using DIVs and choose DIV having id “contentArea” for sliding. Register click event of the HTML element and call SlideToggle and SlidUp method for the “contentArea”. More details of this example are available in the attached project.
  • 15. Example…JQuery also provides four methods to gradually change the opacity of the selected element using Fade effect. fadeTo(speed, opacity, callback): This method changes the opacity of selected elements to specified opacity. fadeIn(speed, callback): This method gradually increases the opacity of the elements, from hidden to visible. fadeOut(speed, callback): This method gradually decreases the opacity of the elements, from visible to hidden. fadeToggle(speed, callback): This method toggles between FadeIn() and FadeOut() for selected elements.
  • 16. I will set the opacity of the image on hover. Add images in to the DIV and assign id “fadeExp1” to div. In ready() function, set the default opacity of all images using $(“#fadeExp1 img”).fadeTo(0, 0.3); statement. Then register Hover event on each image and provide two functions in it, one for mouse over and one for mouse out and set the opacity of element there.
  • 18. Example… JQuery also provides an easy way to animate element. the syntax of animate method is .animate( properties, [duration], [easing], [complete]). properties: A map of CSS properties, which changes during animation duration: String or number to determine the duration of the animation easing: The name of easing function to use for the transition complete: A function to call on the complete of animation
  • 19. A very cool and simple example for the icons list in your website, simply register hover event on the image. On mover over, set top=-15 and on mouse out set top=0 again. Don’t forget to set the relative position of the image.
  • 20. F I n Mr. Ardee Aram Moiselle Sarah C. Roxas CPE 406 PROFESSIONAL ELECTIVE 1

Editor's Notes

  • #2: Your introductory or title slide should convey the overall “feeling” and focus of your presentation. For instance, I typically present about small-business trends, new business ideas, growth opportunities or other positive trends. In this sample presentation, I’m talking about new business ideas, so I used a sun graphic in this slide template to convey a positive feeling. Personalize this slide template with your company’s logo. To add a logo to all slides, place it on the Slide Master. To access the Slide Master, on the Themes tab of the Ribbon, click Edit Master and then click Slide Master.Disclaimer: You understand that Microsoft does not endorse or control the content provided in the following presentation. Microsoft provides this content to you for informational purposes only; it is not intended to be relied upon as business or financial advice. Microsoft does not guarantee or otherwise warrant the accuracy or validity of this information and encourages you to consult with a business or financial professional as appropriate.RIEVA LESONSKY Founder and President, GrowBiz Media RievaLesonsky is founder and president of GrowBiz Media, a content and consulting company specializing in covering small businesses and entrepreneurship. A nationally known speaker and authority on entrepreneurship, Lesonsky has been covering America’s entrepreneurs for nearly 30 years. Before co-founding GrowBiz Media, Lesonsky was Editorial Director of Entrepreneur Magazine.
  • #3: I like to speak spontaneously, so I use PowerPoint as an outline to keep me on track. It’s best to keep your PowerPoint text brief, simply reinforcing key points you will talk about at more length. You can use this slide template to convey a series of steps or related points in a short format.
  • #10: A plain old bulleted list can get boring, so use graphics to liven it up. An image that conveys what you’re saying in visual format (like this diagram) can reinforce your ideas in the audience’s mind.
  • #11: I like to use an off-balance layout to keep things from getting too symmetrical. Customize this slide template graphics of your choice, including photos, clip art, your logo or illustrations. Good photos really help cement an idea in the audience’s mind. This slide is animated to display an appropriate image as you introduce each business type.
  • #13: I often use color and graphics to add excitement to a presentation. Just because it’s about business doesn’t mean it has to be staid—you need movement, energy and color, as in this slide template. Use this slide template to illustrate relationships or processes. In this slide, I used it to show how demographic trends create a new consumer group and what products that group purchases. You could also use it to illustrate your sales cycle or relationships among departments in your company.
  • #14: Insert a chart in this slide template to illustrate your topic visually, then use bullets or color to call out key findings or points from your chart in a brief format.
  • #15: This slide template can show steps, stages or how various elements or factors combine to make one key result or goal. For instance, you could show how various departments in your business work together to make the sale, how key customer groups will all purchase your product, or how different funding sources will provide the total you need. This slide template also makes an excellent concluding slide for your presentation, enabling you to graphically sum up your key points into one final whole.