SlideShare a Scribd company logo
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

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
 
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
 
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
Arno Lordkronos
 
Angular Data Binding
Angular Data BindingAngular Data Binding
Angular Data Binding
Jennifer Estrada
 
Learn react-js
Learn react-jsLearn react-js
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
 

What's hot (20)

Intro to ReactJS
Intro to ReactJSIntro to ReactJS
Intro to ReactJS
 
React - Start learning today
React - Start learning today React - Start learning today
React - Start learning today
 
jQuery basics for Beginners
jQuery basics for BeginnersjQuery basics for Beginners
jQuery basics for Beginners
 
React JS - A quick introduction tutorial
React JS - A quick introduction tutorialReact JS - A quick introduction tutorial
React JS - A quick introduction tutorial
 
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
 
Angular js
Angular jsAngular js
Angular js
 
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
 
jQuery Effects
jQuery EffectsjQuery Effects
jQuery Effects
 
ReactJs presentation
ReactJs presentationReactJs presentation
ReactJs presentation
 
Substance Java One 2007 Community Corner
Substance Java One 2007  Community  CornerSubstance Java One 2007  Community  Corner
Substance Java One 2007 Community Corner
 
AngularJS 2.0
AngularJS 2.0AngularJS 2.0
AngularJS 2.0
 
AngularJS intro
AngularJS introAngularJS intro
AngularJS intro
 
React JS: A Secret Preview
React JS: A Secret PreviewReact JS: A Secret Preview
React JS: A Secret Preview
 
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
 
Introduction to React JS
Introduction to React JSIntroduction to React JS
Introduction to React JS
 
Angular Data Binding
Angular Data BindingAngular Data Binding
Angular Data Binding
 
Learn react-js
Learn react-jsLearn react-js
Learn react-js
 
reactJS
reactJSreactJS
reactJS
 
Getting Started with React-Nathan Smith
Getting Started with React-Nathan SmithGetting Started with React-Nathan Smith
Getting Started with React-Nathan Smith
 
Intro to React
Intro to ReactIntro to React
Intro to React
 

Viewers also liked

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
 
SIP Photo Slideshow
SIP Photo SlideshowSIP Photo Slideshow
SIP Photo Slideshow
katie-masoninnovation
 
Causesof wwi
Causesof wwiCausesof wwi
Causesof wwitar358
 
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 outcomestar358
 
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 Preptar358
 
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
 

Viewers also liked (18)

Facebook timeline
Facebook timelineFacebook timeline
Facebook timeline
 
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.
 
slide1
slide1slide1
slide1
 
Palm sunday april 1, 2012 (2)
Palm sunday april 1, 2012 (2)Palm sunday april 1, 2012 (2)
Palm sunday april 1, 2012 (2)
 
Bible study001
Bible study001Bible study001
Bible study001
 
slide2
slide2slide2
slide2
 
SIP Photo Slideshow
SIP Photo SlideshowSIP Photo Slideshow
SIP Photo Slideshow
 
Causesof wwi
Causesof wwiCausesof wwi
Causesof wwi
 
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.
 
Facebook timeline details
Facebook timeline detailsFacebook timeline details
Facebook timeline details
 
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.
 
Wwi battles and outcomes
Wwi battles and outcomesWwi battles and outcomes
Wwi battles and outcomes
 
Comcast Event
Comcast EventComcast Event
Comcast Event
 
Linhart Public Relations and our Pets
Linhart Public Relations and our PetsLinhart Public Relations and our Pets
Linhart Public Relations and our Pets
 
Linhart Public Relations and our Pets
Linhart Public Relations and our PetsLinhart Public Relations and our Pets
Linhart Public Relations and our Pets
 
Standardized Test Prep
Standardized Test PrepStandardized Test Prep
Standardized Test Prep
 
Social Studies Stadardized Test Prep.
Social Studies Stadardized Test Prep.Social Studies Stadardized Test Prep.
Social Studies Stadardized Test Prep.
 
Facebook timeline
Facebook timelineFacebook timeline
Facebook timeline
 

Similar to JQUERY TUTORIALS

Starting with jQuery
Starting with jQueryStarting with jQuery
Starting with jQuery
Anil Kumar
 
J query
J queryJ query
Jquery
Jquery Jquery
Jquery
eginni
 
J query presentation
J query presentationJ query presentation
J query presentationakanksha17
 
J query presentation
J query presentationJ query presentation
J query presentationsawarkar17
 
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 jQueryLaila 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 XPagesMark Roden
 
Fewd week4 slides
Fewd week4 slidesFewd week4 slides
Fewd week4 slides
William Myers
 
Jquery
JqueryJquery
Jquery
JqueryJquery
A to Z about JQuery - Become Newbie to Expert Java Developer
A to Z about JQuery - Become Newbie to Expert Java DeveloperA to Z about JQuery - Become Newbie to Expert Java Developer
A to Z about JQuery - Become Newbie to Expert Java Developer
Manoj Bhuva
 

Similar to JQUERY TUTORIALS (20)

Jquery
JqueryJquery
Jquery
 
J query intro_29thsep_alok
J query intro_29thsep_alokJ query intro_29thsep_alok
J query intro_29thsep_alok
 
Starting with jQuery
Starting with jQueryStarting with jQuery
Starting with jQuery
 
J query
J queryJ query
J query
 
Jquery
Jquery Jquery
Jquery
 
J query presentation
J query presentationJ query presentation
J query presentation
 
J query presentation
J query presentationJ query presentation
J query presentation
 
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
 
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
 
Implementing auto complete using JQuery
Implementing auto complete using JQueryImplementing auto complete using JQuery
Implementing auto complete using JQuery
 
Jquery tutorial-beginners
Jquery tutorial-beginnersJquery tutorial-beginners
Jquery tutorial-beginners
 
Getting Started with jQuery
Getting Started with jQueryGetting Started with jQuery
Getting Started with jQuery
 
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
 
Fewd week4 slides
Fewd week4 slidesFewd week4 slides
Fewd week4 slides
 
Jquery
JqueryJquery
Jquery
 
Jquery
JqueryJquery
Jquery
 
Jquery
JqueryJquery
Jquery
 
Jquery beltranhomewrok
Jquery beltranhomewrokJquery beltranhomewrok
Jquery beltranhomewrok
 
Jquery beltranhomewrok
Jquery beltranhomewrokJquery beltranhomewrok
Jquery beltranhomewrok
 
A to Z about JQuery - Become Newbie to Expert Java Developer
A to Z about JQuery - Become Newbie to Expert Java DeveloperA to Z about JQuery - Become Newbie to Expert Java Developer
A to Z about JQuery - Become Newbie to Expert Java Developer
 

Recently uploaded

Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 
RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
KAMESHS29
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Paige Cruz
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
Matthew Sinclair
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
Quotidiano Piemontese
 
GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...
ThomasParaiso2
 
Large Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial ApplicationsLarge Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial Applications
Rohit Gautam
 
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AIEnchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Vladimir Iglovikov, Ph.D.
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
ControlCase
 
20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
Matthew Sinclair
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
名前 です男
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
sonjaschweigert1
 
By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024
Pierluigi Pugliese
 
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
Neo4j
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
Matthew Sinclair
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
Kumud Singh
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 

Recently uploaded (20)

Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 
RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
 
GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...
 
Large Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial ApplicationsLarge Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial Applications
 
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AIEnchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AI
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
 
20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
 
By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024
 
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 

JQUERY TUTORIALS

  • 1.
  • 2.
  • 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

  1. 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.
  2. 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.
  3. 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.
  4. 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.
  5. 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.
  6. 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.
  7. 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.