SlideShare a Scribd company logo
Introduc)on
for
Developers
Who
am
I?
• Jonathan
Sharp,
Omaha,
Nebraska
• Freelance
Developer
(Out
West
Media.com)
• jQuery
Team
member,
(web
&
infrastructure
team)
• Co‐authored
“jQuery
Cookbook”
(O’Reilly)
Q4
2009
• @jdsharp
Who
am
I?
• Own
a
horse
Overview
• Who,
what,
and
why
of
jQuery
• 5
core
jQuery
concepts
• Overview
of
jQuery
API
• Build
a
plugin
in
6
steps
• jQuery
Ini)a)ves
• Ques)ons
Who
uses
jQuery
• 35%
of
all
sites
that
use
JavaScript,
use
jQuery
• 1
out
5,
of
all
sites,
use
jQuery




                   h]p://trends.builtwith.com/javascript/JQuery
Who
uses
jQuery
• 35%
of
all
sites
that
use
JavaScript,
use
jQuery
• 1
out
5,
of
all
sites,
use
jQuery
     reddit.com
         whitehouse.gov
                            overstock.com
      espn.com
           wikipedia.org
                               )me.com
      ibm.com
           microsob.com
                              capitalone.com
 stackoverflow.com
        amazon.com
                                usatoday.com
    kickball.com
          netflix.com
                                 ning.com
      boxee.tv
             bing.com
                               wordpress.com
        bit.ly            monster.com
                                 dell.com
    twitpic.com              tv.com                                   twi]er.com

                     h]p://trends.builtwith.com/javascript/JQuery
Who
uses
jQuery
• 35%
of
all
sites
that
use
JavaScript,
use
jQuery
• 1
out
5,
of
all
sites,
use
jQuery
      reddit.com
        whitehouse.gov
                            overstock.com
       espn.com
          wikipedia.org
                               )me.com
       ibm.com
          microsob.com
                              capitalone.com
 stackoverflow.com
        amazon.com
                                usatoday.com
    kickball.com
          netflix.com
                                 ning.com
       boxee.tv
            bing.com
                               wordpress.com
         bit.ly           monster.com
                                 dell.com
     twitpic.com             tv.com                                   twi]er.com

                     h]p://trends.builtwith.com/javascript/JQuery
What
exactly
is
jQuery

jQuery
is
a
JavaScript
Library!

• Interac)on
with
the
DOM
 (e.g.
selec)ng,
crea)ng,
traversing,
changing
etc…)

• JavaScript
Events
• Anima)ons
• Ajax
interac)ons
What
does
that
mean?
Add
class
‘odd’
to
a
table
row...
var tables = document.getElementsByTagName(‘table’);

for (var t = 0; t < tables.length; t++) {
    var rows = tables[t].getElementsByTagName("tr");
    for (var i = 1; i < rows.length; i += 2) {
        if (!/(^|s)odd(s|$)/.test(rows[i].className)) {
            rows[i].className += ‘odd’;
        }
    }
};



                  ...becomes...
                h]p://jsbin.com/esewu/edit
Poetry

jQuery(‘table tr:nth-child(odd)’).addClass(‘odd’);
Using
jQuery
we
can
do
this

     jQuery(‘table tr:nth-child(odd)’).addClass(‘odd’);




jQuery
func)on
Using
jQuery
we
can
do
this

     jQuery(‘table tr:nth-child(odd)’).addClass(‘odd’);



                 jQuery
Selector
(CSS
Expression)

jQuery
func)on
Using
jQuery
we
can
do
this

     jQuery(‘table tr:nth-child(odd)’).addClass(‘odd’);



                     jQuery
Selector
(CSS
Expression)

jQuery
func)on




        jQuery
Collec)on
Using
jQuery
we
can
do
this

     jQuery(‘table tr:nth-child(odd)’).addClass(‘odd’);



                     jQuery
Selector
(CSS
Expression)

jQuery
func)on




        jQuery
Collec)on                            jQuery
Method
Using
jQuery
we
can
do
this

jQuery(‘table tr:nth-child(odd)’).addClass(‘odd’);
Further
Reduced

$(‘table tr:nth-child(odd)’).addClass(‘odd’);
Further
Reduced

var jQuery = function(...) { ... };

// $ is a valid variable character in JavaScript
var $ = jQuery;

$(‘table tr:nth-child(odd)’).addClass(‘odd’);
It
really
is
the


“write
less,
do
more”


 JavaScript
Library!
Why
use
jQuery
• Simplicity,
Speeds
up
web
development
• Avoids
common
headaches
w/
browsers
• Extensive
list
of
plugins
• Large
&
ac)ve
community
• Extensive
test
coverage
(50
browsers,
11
plahorms)
• API
for
both
coders
and
designers
Why
use
jQuery
over
other
soluNons
• Simplicity,
Speeds
up
web
development
• Avoids
common
headaches
w/
browsers
• Extensive
list
of
plugins
• Large
&
ac)ve
community
• Extensive
test
coverage
(50
browsers,
11
plahorms)
• API
for
both
coders
and
designers
Ok,
lets
get
to
it!
Concept
1.
Find
something,
do
something
<!DOCTYPE html>
<html>
<body>
    <ul>
    
   <li><a>home</a></li>
    
   <li><a>about</a></li>
    </ul>
</body>
</html>
Concept
1.
Find
something,
do
something
<!DOCTYPE html>
<html>
<body>
    <ul>
    
   <li><a>home</a></li>
    
   <li><a>about</a></li>
    </ul>
<script src=‘jquery.js’></script>
<script>

   $(‘ul’);
</script>
</body>
</html>
Concept
1.
Find
something,
do
something
<!DOCTYPE html>
<html>
<body>
    <ul id=‘nav’>
    
   <li><a>home</a></li>
    
   <li><a>about</a></li>
    </ul>
<script src=‘jquery.js’></script>
<script>

   $(‘ul’).attr(‘id’,‘nav’);
</script>
</body>
</html>
Concept
1.
Find
something,
do
something
<!DOCTYPE html>
<html>
<body>
    <ul id=‘nav’>
    
   <li><a>home</a></li>
    
   <li><a>about</a></li>
    </ul>
<script src=‘jquery.js’></script>
<script>

   $(‘#nav li’);
</script>
</body>
</html>
Concept
1.
Find
something,
do
something
<!DOCTYPE html>
<html>
<body>
    <ul id=‘nav’>
    
   <li class=‘navLiItem’><a>home</a></li>
    
   <li class=‘navLiItem’><a>about</a></li>
    </ul>
<script src=‘jquery.js’></script>
<script>

   $(‘#nav li’).addClass(‘navLiItem’);
</script>
</body>
</html>
Concept
1.
Find
something,
do
something
<!DOCTYPE html>
<html>
<body>
    <ul id=‘nav’>
    
   <li class=‘navLiItem’><a>home</a></li>
    
   <li class=‘navLiItem’><a>about</a></li>
    </ul>
<script src=‘jquery.js’></script>
<script>

   $(‘#nav a’);
</script>
</body>
</html>
Concept
1.
Find
something,
do
something
<!DOCTYPE html>
<html>
<body>
    <ul id=‘nav’>
    
   <li class=‘navLiItem’><a href=‘/home’>home</a></li>
    
   <li class=‘navLiItem’><a href=‘/about’>about</a></li>
    </ul>
<script src=‘jquery.js’></script>
<script>

   $(‘#nav a’).each(function(){

   
   $(this).attr(‘href’,’/’ + $(this).text());

   });
</script>
</body>
</html>
Concept
2.
Create
something,
do
something
<!DOCTYPE html>
<html>
<body>
<ul id=‘nav’>
</ul>
</script>
</body>
</html>
Concept
2.
Create
something,
do
something
<!DOCTYPE html>
<html>
<body>
<ul id=‘nav’>
</ul>
<script src=‘jquery.js’></script>
<script>

   $(‘<li>home</li>’);
</script>
</body>
</html>
Concept
2.
Create
something,
do
something
<!DOCTYPE html>
<html>
<body>
<ul id=‘nav’>
</ul>
<script src=‘jquery.js’></script>
<script>

   $(‘<li>home</li>’).wrapInner(‘a’);
</script>
</body>
</html>
Concept
2.
Create
something,
do
something
<!DOCTYPE html>
<html>
<body>
<ul id=‘nav’>

   <li><a>home</a></li>

   <li><a>about</a></li>
</ul>
<script src=‘jquery.js’></script>
<script>

   $(‘<li>home</li>’).wrapInner(‘a’).appendTo(‘#nav’);

   $(‘<li>about</li>’).wrapInner(‘a’).appendTo(‘#nav’);
</script>
</body>
</html>
Concept
3.
Chaining
&
OperaNng
<!DOCTYPE html>
<html>
<body>
    <ul id=‘nav’>
    
   <li class=‘navLiItem’><a href=‘/home’>home</a></li>
    
   <li class=‘navLiItem’><a href=‘/about’>about</a></li>
    </ul>
<script src=‘jquery.js’></script>
<script>

   $(‘ul’).attr(‘id’,’nav’);

   $(‘#nav li’).addClass(‘navLiItem’);

   $(‘#nav a’).each(function(){

   
   $(this).attr(‘href’,’/’ + $(this).text());

   });
</script>
</body>
</html>
Concept
3.
Chaining
&
OperaNng
<!DOCTYPE html>
<html>
<body>
    <ul id=‘nav’>
    
    <li class=‘navLiItem’><a href=‘/home’>home</a></li>
    
    <li class=‘navLiItem’><a href=‘/about’>about</a></li>
    </ul>
<script src=‘jquery.js’></script>
<script>

   $(‘ul’)

   
    .attr(‘id’,’nav’)

   
    .find(‘li’) // Push stack
   
     
   .addClass(‘navLiItem’)
       
     
   .find(‘a’) // Push stack
            
    
   .each(function(){
            
    
   
   $(this).attr(‘href’,’/’ + $(this).text());
            
    
   });
</script>
</body>
</html>
Concept
4.
Understanding
Implicit
iteraNon
<!DOCTYPE html>
<html>
<body>
    <ul id=‘nav’>
    
   <li class=‘navLiItem’><a href=‘/home’>home</a></li>
    
   <li class=‘navLiItem’><a href=‘/about’>about</a></li>
    </ul>
<script src=‘jquery.js’></script>
<script>

   $(‘ul’)

   
   .attr(‘id’,’nav’)

   
   .find(‘li’)

   
   .addClass(‘navLiItem’)

   
   .find(‘a’)

   
   .each(function(){

   
   
   $(this).attr(‘href’,’/’ + $(this).text());

   
   });
</script>
</body>
</html>
Concept
4.
Understanding
Implicit
iteraNon
<!DOCTYPE html>
<html>
<body>
    <ul id=‘nav’>
    
   <li class=‘navLiItem’><a href=‘/home’>home</a></li>
    
   <li class=‘navLiItem’><a href=‘/about’>about</a></li>
    </ul>
<script src=‘jquery.js’></script>
<script>

   $(‘ul’)

   
   .attr(‘id’,’nav’)

   
   .find(‘li’)

   
   .addClass(‘navLiItem’)

   
   .find(‘a’)

   
   .each(function(){

   
   
   $(this).attr(‘href’,’/’ + $(this).text());

   
   });
</script>
</body>
</html>
Concept
5.
Knowing
the
jQuery
parameter
types


• CSS
Selectors
&
custom
CSS
expressions

 e.g. $(‘#nav’) and $(‘:first’)


• HTML

 e.g. $(‘<li><a href=“#”>link</a></li>’)


• DOM
Elements
 e.g. $(document) or $(document.createElement('a'))


• A
func)on
(shortcut
for
jQuery
DOM
ready
event)
 e.g. $(function(){}) = $(document).ready(function(){})
Review
• Find
something,
do
something
• Create
something,
do
something
• Chaining
&
Opera)ng
• Understanding
Implicit
Itera)on
• Knowing
the
jQuery
parameter
types
jQuery
API
overview
• Core
• Selectors
• A]ributes
• Traversing
• Manipula)on
• CSS
• Events
• Effects
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          $()


• Selectors     each()
                size()

• A]ributes     length()
                selector()
                context()
• Traversing    eq()
                get()
• Manipula)on   index()


• CSS           data()
                removeData()
                queue()
• Events        dequeue()


• Effects        jQuery.fn.extend()
                jQuery.extend()

• Ajax          jQuery.noConflict()

• U)li)es
Overview
of
jQuery
API
• Core          $()


• Selectors     each()
                size()

• A]ributes     length()
                selector()
                context()
• Traversing    eq()
                get()
• Manipula)on   index()


• CSS           data()
                removeData()
                queue()
• Events        dequeue()


• Effects        jQuery.fn.extend()
                jQuery.extend()

• Ajax          jQuery.noConflict()

• U)li)es
Overview
of
jQuery
API
• Core          <!DOCTYPE html>
                <html>
• Selectors     <body>


• A]ributes     <p>Element Node</p>

                <script src="http://ajax.googleapis.com/ajax/libs/
• Traversing    jquery/1.3.2/jquery.min.js" ></script>
                <script>
• Manipula)on   
    alert($(‘p’).get(0).nodeType);
                </script>

• CSS           </body>
                </html>
• Events
• Effects
• Ajax
• U)li)es                                 h]p://jsbin.com/aneki/edit#html
Overview
of
jQuery
API
• Core          <!DOCTYPE html>
                <html>
• Selectors     <body>


• A]ributes     <p>Element Node</p>

                <script src="http://ajax.googleapis.com/ajax/libs/
• Traversing    jquery/1.3.2/jquery.min.js" ></script>
                <script>
• Manipula)on   
                
                     alert($(‘p’).get(0).nodeType);
                     alert($(‘p’)[0].nodeType);

• CSS           </script>

                </body>
• Events        </html>


• Effects
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core
• Selectors
• A]ributes
• Traversing
• Manipula)on
• CSS
• Events
• Effects
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          $(‘#nav li.contact’)


• Selectors
• A]ributes
• Traversing
• Manipula)on
• CSS
• Events
• Effects
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          $(‘#nav li.contact’)


• Selectors     $(‘:visible’)


• A]ributes
• Traversing
• Manipula)on
• CSS
• Events
• Effects
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          $(‘#nav li.contact’)


• Selectors     $(‘:visible’)


• A]ributes     $(‘:radio:enabled:checked’)


• Traversing
• Manipula)on
• CSS
• Events
• Effects
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          $(‘#nav li.contact’)


• Selectors     $(‘:visible’)


• A]ributes     $(‘:radio:enabled:checked’)

                $(‘a[title]’)
• Traversing
• Manipula)on
• CSS
• Events
• Effects
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          $(‘#nav li.contact’)


• Selectors     $(‘:visible’)


• A]ributes     $(‘:radio:enabled:checked’)

                $(‘a[title]’)
• Traversing    $(‘a[title][href*=‘foo’]’)
• Manipula)on
• CSS
• Events
• Effects
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          $(‘#nav li.contact’)


• Selectors     $(‘:visible’)


• A]ributes     $(‘:radio:enabled:checked’)

                $(‘a[title]’)
• Traversing    $(‘a[title][href*=‘foo’]’)
• Manipula)on   $(‘a:first[href*=‘foo’]’)

• CSS
• Events
• Effects
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          $(‘#nav li.contact’)


• Selectors     $(‘:visible’)


• A]ributes     $(‘:radio:enabled:checked’)

                $(‘a[title]’)
• Traversing    $(‘a[title][href*=‘foo’]’)
• Manipula)on   $(‘a:first[href*=‘foo’]’)

• CSS           $(‘#header,#footer’)

• Events
• Effects
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          $(‘#nav li.contact’)


• Selectors     $(‘:visible’)


• A]ributes     $(‘:radio:enabled:checked’)

                $(‘a[title]’)
• Traversing    $(‘a[title][href*=‘foo’]’)
• Manipula)on   $(‘a:first[href*=‘foo’]’)

• CSS           $(‘#header,#footer’)

• Events        $(‘#mainContent,#sidebar’,’#content’)


• Effects
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          $(‘#nav li.contact’)


• Selectors     $(‘:visible’)


• A]ributes     $(‘:radio:enabled:checked’)

                $(‘a[title]’)
• Traversing    $(‘a[title][href*=‘foo’]’)
• Manipula)on   $(‘a:first[href*=‘foo’]’)

• CSS           $(‘#header,#footer’)

• Events        $(‘#mainContent,#sidebar’,’#content’)


• Effects        h]p://codylindley.com/jqueryselectors/


• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          attr()
                removeAttr()
• Selectors
                addClass()
• A]ributes     hasClass()
                toggleClass()
• Traversing    removeClass()

• Manipula)on   val()

• CSS
• Events
• Effects
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          attr()
                removeAttr()
• Selectors
                addClass()
• A]ributes     hasClass()
                toggleClass()
• Traversing    removeClass()

• Manipula)on   val()

• CSS
• Events
• Effects
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          <!DOCTYPE html><html><body>


• Selectors     <input type="text" value="search" />

                <script src="jquery.js"></script>

• A]ributes     <script>
                $('input')
                  .focus(function(){
• Traversing        var v = $(this).val();
                     $(this).val( v === this.defaultValue ? '' : v);

• Manipula)on
                  })
                  .blur(function(){
                    var v = $(this).val();

• CSS               $(this).val( v.match(/^s+$|^$/) ?

                  });
                       this.defaultValue : v);


• Events        </script></body></html>

• Effects
• Ajax
• U)li)es                                              h]p://jsbin.com/irico/edit#html
Overview
of
jQuery
API
• Core          add()            eq()
                children()       filter()
• Selectors     closest()        is()
                contents()       map()
• A]ributes     find()           not()
                next()           slice()
• Traversing    nextAll()
                offsetParent()
• Manipula)on   parent()
                parents()
• CSS           prev()
                prevAll()
• Events        siblings()

• Effects        andSelf()
                end()
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          add()            eq()
                children()       filter()
• Selectors     closest()        is()
                contents()       map()
• A]ributes     find()           not()
                next()           slice()
• Traversing    nextAll()
                offsetParent()
• Manipula)on   parent()
                parents()
• CSS           prev()
                prevAll()
• Events        siblings()

• Effects        andSelf()
                end()
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          <!DOCTYPE html>
                <html>
• Selectors     <body>


• A]ributes     <p>Make me bold!</p>

                <script src="http://ajax.googleapis.com/ajax/
• Traversing    libs/jquery/1.3.2/jquery.min.js" ></script>
                <script>
• Manipula)on   $(‘p’)

• CSS           
                
                     .contents()
                     .wrap(‘<strong></strong>’);

• Events        </script>
                </body>

• Effects        </html>


• Ajax
• U)li)es                                          h]p://jsbin.com/ituza/edit#html
Overview
of
jQuery
API
• Core          html()          replaceWith()
                text()          replaceAll()
• Selectors
                append()        empty()
• A]ributes     appendTo()      remove()
                prepend()
• Traversing    prependTo()     clone()

• Manipula)on   after()
                before()
• CSS           insert()
                insertAfter()
• Events        insertBefore

• Effects        warp()
                wrapAll()
• Ajax          wrapInner()

• U)li)es
Overview
of
jQuery
API
• Core          html()          replaceWith()
                text()          replaceAll()
• Selectors
                append()        empty()
• A]ributes     appendTo()      remove()
                prepend()
• Traversing    prependTo()     clone()

• Manipula)on   after()
                before()
• CSS           insert()
                insertAfter()
• Events        insertBefore

• Effects        warp()
                wrapAll()
• Ajax          wrapInner()

• U)li)es
Overview
of
jQuery
API
• Core          <!DOCTYPE html>
                <html>
• Selectors     <body>

• A]ributes     <p>jQuery</p>

• Traversing    <script src="jquery.js"></script>
                <script>
• Manipula)on
                alert($(‘p’).text());
• CSS
                </script>
• Events        </body>
                </html>
• Effects
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          css()

• Selectors     offset()
                offsetParent()
• A]ributes     position()
                scrollTop()
• Traversing    scrollLeft()

• Manipula)on   height()
                width()
• CSS           innerHeight()
                innerWidth()
• Events        outerHeight()
                outerWidth()
• Effects
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          css()

• Selectors     offset()
                offsetParent()
• A]ributes     position()
                scrollTop()
• Traversing    scrollLeft()

• Manipula)on   height()
                width()
• CSS           innerHeight()
                innerWidth()
• Events        outerHeight()
                outerWidth()
• Effects
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          <!DOCTYPE html>
                <html>
• Selectors     <head>
                <style>div{background-color:#ccc; width:100px;

• A]ributes     margin:0 20px; float:left;}</style>
                </head>
                <body>
• Traversing    <div></div>
• Manipula)on   <div></div>
                <div></div>

• CSS           <script src=“jquery.js" ></script>
                <script>
• Events        $('div')

• Effects        
    .height($(document).height());


• Ajax
                </script>
                </body>
                </html>
• U)li)es
Overview
of
jQuery
API
• Core          ready()            blur()
                                   change()
• Selectors     bind()
                one()
                                   click()
                                   dbclick()

• A]ributes     trigger()
                triggerHandler()
                                   error()
                                   focus()
                unbind()           keydown()
• Traversing    live()
                                   keypress()
                                   keyup()
• Manipula)on   die()              mousedown()
                                   mousenter()

• CSS           hover()
                toggle()
                                   mouseleave()
                                   mouseout()
                                   mouseup()
• Events                           resize()
                                   scroll()

• Effects                           select()
                                   submit()

• Ajax
                                   unload()



• U)li)es
Overview
of
jQuery
API
• Core          ready()            blur()
                                   change()
• Selectors     bind()
                one()
                                   click()
                                   dbclick()

• A]ributes     trigger()
                triggerHandler()
                                   error()
                                   focus()
                unbind()           keydown()
• Traversing    live()
                                   keypress()
                                   keyup()
• Manipula)on   die()              mousedown()
                                   mousenter()

• CSS           hover()
                toggle()
                                   mouseleave()
                                   mouseout()
                                   mouseup()
• Events                           resize()
                                   scroll()

• Effects                           select()
                                   submit()

• Ajax
                                   unload()



• U)li)es
Overview
of
jQuery
API
• Core          <!DOCTYPE html>
                <html>
• Selectors     <body>

• A]ributes     <p>click me</p>
                <p>click me</p>
• Traversing    <script src="jquery.js"></script>

• Manipula)on   <script>


• CSS
                $("p").bind("click", function(){
                      $(this).after("<p>click me</p>");
                });
• Events
                </script>
• Effects        </body>
                </html>
• Ajax
• U)li)es                                 h]p://jsbin.com/ehuki/edit#html
Overview
of
jQuery
API
• Core          <!DOCTYPE html>
                <html>
• Selectors     <body>

• A]ributes     <p>click me</p>
                <p>click me</p>
• Traversing    <script src="jquery.js"></script>

• Manipula)on   <script>


• CSS
                $("p").live("click", function(){
                      $(this).after("<p>click me</p>");
                });
• Events
                </script>
• Effects        </body>
                </html>
• Ajax
• U)li)es                                 h]p://jsbin.com/epeha/edit#html
Overview
of
jQuery
API
• Core          show()
                hide()
• Selectors     toggle()

• A]ributes     slideDown()
                slideUp()
• Traversing    slideToggle()

• Manipula)on   fadeIn()
                fadeOut()
• CSS           fadeTo()

• Events        animate()
                stop()
• Effects
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          show()
                hide()
• Selectors     toggle()

• A]ributes     slideDown()
                slideUp()
• Traversing    slideToggle()

• Manipula)on   fadeIn()
                fadeOut()
• CSS           fadeTo()

• Events        animate()
                stop()
• Effects
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          <!DOCTYPE html><html><head>
                <style>
• Selectors     div{background-color:#bca;width:100px;border:1px
                solid green;}

• A]ributes     </style>
                </head>
                <body>
• Traversing    <div id="block">Hello!</div>
                <script src="http://ajax.googleapis.com/ajax/
• Manipula)on   libs/jquery/1.3.2/jquery.min.js" ></script>
                <script>

• CSS           $("#block").animate({
                
    width: ‘70%’,
• Events        
                
                     opacity: 0.4,
                     marginLeft: ‘0.6in’,

• Effects        
                
                     fontSize: ‘3em’,
                     borderWidth: ‘10px’

• Ajax
                }, 1500);

                </script></body></html>
• U)li)es                                     h]p://jsbin.com/evage/edit#html
Overview
of
jQuery
API
• Core          jQuery.ajax()         jQuery.ajaxSetup()

                jQuery.get()          serialize()
• Selectors     jQuery.getJSON()
     serializeArray()
• A]ributes     jQuery.getScript()

                jQuery.post()
• Traversing    load()
• Manipula)on
                ajaxCompete()
• CSS           ajaxError()
                ajaxSend()
• Events        ajaxStart()
• Effects        ajaxStop()
                ajaxSuccess()
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          jQuery.ajax()         jQuery.ajaxSetup()

                jQuery.get()          serialize()
• Selectors     jQuery.getJSON()
     serializeArray()
• A]ributes     jQuery,getScript()

                jQuery.post()
• Traversing    load()
• Manipula)on
                ajaxCompete()
• CSS           ajaxError()
                ajaxSend()
• Events        ajaxStart()
• Effects        ajaxStop()
                ajaxSuccess()
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          <!DOCTYPE
html><html><body>

                <script
src="h]p://ajax.googleapis.com/ajax/libs/jquery/
• Selectors     1.3.2/jquery.min.js"
></script>

                <script>


• A]ributes     var
url
=
‘h]p://api.flickr.com/services/feeds/
                photos_public.gne?
• Traversing    tags=jquery&tagmode=all&format=json&jsoncallback=?’;

• Manipula)on   $.getJSON(url,
func)on(data){

• CSS           



$.each(data.items,
func)on(i,item){

                







$("<img/>")
• Events        
         .a]r("src",
item.media.m).appendTo("body");

                







if
(
i
==
30
)
return
false;

• Effects        



});

                });

• Ajax          </script>
</body></html>

• U)li)es                                             h]p://jsbin.com/erase/edit#html
Overview
of
jQuery
API
• Core          $.support         $.trim()
                $.boxModel
• Selectors                       $.param()
• A]ributes     $.each(),

                $.extend(),

• Traversing    $.grep(),

                $.makeArray(),

• Manipula)on   $.map(),

                $.inArray(),

• CSS           $.merge(),

                $.unique()
• Events
• Effects        $.isArray(),

                $,isFunc)on()
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          $.support         $.trim()
                $.boxModel
• Selectors                       $.param()
• A]ributes     $.each(),

                $.extend(),

• Traversing    $.grep(),

                $.makeArray(),

• Manipula)on   $.map(),

                $.inArray(),

• CSS           $.merge(),

                $.unique()
• Events
• Effects        $.isArray(),

                $,isFunc)on()
• Ajax
• U)li)es
Overview
of
jQuery
API
• Core          $.each(data.items, function(i,item){


• Selectors     $("<img/>")
                
    .attr("src”,item.media.m).appendTo("body");


• A]ributes     if ( i == 30 ) return false;

                });
• Traversing
• Manipula)on
• CSS
• Events
• Effects
• Ajax
• U)li)es
What
happen
to
the
$
alias
and
the
$
    (document).ready()
event
<!DOCTYPE html> <html>
<head>
<script src=“jquery.js”></script>
<script>
$(document).ready(function{

   //jQuery code here
})
</script>
</head>
<body>
</script>
</body>
</html>
What
happen
to
the
$
alias
and
the
$
    (document).ready()
event
<!DOCTYPE html> <html>
<head>
<script src=“jquery.js”></script>
<script>
$(document).ready(function{

   alert($(document).jquery);
})
</script>
</head>
<body>
</script>
</body>
</html>
What
happen
to
the
$
alias
and
the
$
    (document).ready()
event
<!DOCTYPE html> <html>
<head>
<script src=“jquery.js”></script>
<script>
$(document).ready(function{

   alert($(document).jquery);
})
</script>
</head>
<body>
</script>
</body>
</html>
What
happen
to
the
$
alias
and
the
$
    (document).ready()
event
<!DOCTYPE html>
<html>
<body>
<script src=“jquery.js”></script>
<script>
alert($(document).jquery);
</script>
</body>
</html>
What
happen
to
the
$
alias
and
the
$
    (document).ready()
event
<!DOCTYPE html>
<html>
<body>
<script src=“jquery.js”></script>
<script>
alert($(document).jquery);
(function($){

   alert($().jquery);
})(jQuery);
</script>
</body>
</html>
Plugins!
So,
what
is
a
plugin?
A
plugin
is
nothing
more
than
a
custom
jQuery

method
created
to
extend
the
func)onality
of

the
jQuery
object

                $(‘ul’).myPlugin()
Why
Create
a
plugin?
You
want
to
“find
something”,
and
“do

something”
but
the
“do
something”
is
not

available
in
jQuery.


Roll
your
own
“do
something”
with
a
plugin!
A
jQuery
plugin
in
6
steps



      h]p://jsbin.com/eheku/edit
A
jQuery
plugin
in
6
steps
Step
1.
create
a
private
scope
for
$
alias
<!DOCTYPE html><html><body>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/
jquery.min.js"></script>
<script>
(function($){

})(jQuery);
</script></body></html>
A
jQuery
plugin
in
6
steps
Step
2.
a]ach
plugin
to
fn
alias
(aka
prototype)
<!DOCTYPE html><html><body>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/
jquery.min.js"></script>
<script>
(function($){
    $.fn.loveNotHate = function(){
    
   $(this).text($(this).text().replace(/hate/g,'love'));
    };
})(jQuery);
</script></body></html>
A
jQuery
plugin
in
6
steps
Step
2.
a]ach
plugin
to
fn
alias
(aka
prototype)
<!DOCTYPE html><html><body>
<p>I hate jQuery!</p>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/
jquery.min.js"></script>
<script>
(function($){
    $.fn.loveNotHate = function(){
    
   $(this).text($(this).text().replace(/hate/g,'love'));
    };
})(jQuery);
$('p').loveNotHate();
</script></body></html>
A
jQuery
plugin
in
6
steps
Step
3.
add
implicit
itera)on
<!DOCTYPE html><html><body>
<p>I hate jQuery!</p>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/
jquery.min.js"></script>
<script>
(function($){
    $.fn.loveNotHate = function(){
        this.each(function(){
 
   
            $(this).text($(this).text().replace(/hate/g,'love'));
        });
    };
})(jQuery);
$('p').loveNotHate();
</script></body></html>
A
jQuery
plugin
in
6
steps
Step
3.
add
implicit
itera)on
<!DOCTYPE html><html><body>
<p>I hate jQuery!</p>
<p>I mean really hate jQuery!</p>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/
jquery.min.js"></script>
<script>
(function($){
    $.fn.loveNotHate = function(){
        this.each(function(){
 
   
            $(this).text($(this).text().replace(/hate/g,'love'));
        });
    };
})(jQuery);
$('p').loveNotHate();
</script></body></html>
A
jQuery
plugin
in
6
steps
Step
4.
enable
chaining
<!DOCTYPE html><html><body>
<p>I hate jQuery!</p>
<p>I mean really hate jQuery!</p>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/
jquery.min.js"></script>
<script>
(function($){
    $.fn.loveNotHate = function(){
        return this.each(function(){
 
    
            $(this).text($(this).text().replace(/hate/g,'love'));
        });
    };
})(jQuery);
$('p').loveNotHate();
</script></body></html>
A
jQuery
plugin
in
6
steps
Step
4.
enable
chaining
<!DOCTYPE html><html><body>
<p>I hate jQuery!</p>
<p>I mean really hate jQuery!</p>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/
jquery.min.js"></script>
<script>
(function($){
    $.fn.loveNotHate = function(){
        return this.each(function(){
 
    
            $(this).text($(this).text().replace(/hate/g,'love'));
        });
    };
})(jQuery);
$('p').loveNotHate().hide();
</script></body></html>
A
jQuery
plugin
in
6
steps
Step
5.
add
default
op)ons
<!DOCTYPE html><html><body>
<p>I hate jQuery!</p>
<p>I mean really hate jQuery!</p>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/
jquery.min.js"></script>
<script>
(function($){
    $.fn.loveNotHate = function(){
        return this.each(function(){
 
    
            $(this).text($(this).text().replace(/hate/g,
            $.fn.loveNotHate.defaultOptions.text));
        });
    };
    $.fn.loveNotHate.defaultOptions = {text:'love'};
})(jQuery);
$('p').loveNotHate();
</script></body></html>
A
jQuery
plugin
in
6
steps
Step
6.
add
custom
op)ons
<!DOCTYPE html><html><body>
<p>I hate jQuery!</p>
<p>I mean really hate jQuery!</p>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/
jquery.min.js"></script>
<script>
(function($){
    $.fn.loveNotHate = function(){
        return this.each(function(){
 
    
            $(this).text($(this).text().replace(/hate/g,
            $.fn.loveNotHate.defaultOptions.text));
        });
    };
    $.fn.loveNotHate.defaultOptions = {text:'love'};
})(jQuery);
$('p').loveNotHate({text:'love-love-love'});
</script></body></html>
A
jQuery
plugin
in
6
steps
Step
6.
add
custom
op)ons
<!DOCTYPE html><html><body>
<p>I hate jQuery!</p>
<p>I mean really hate jQuery!</p>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/
jquery.min.js"></script>
<script>
(function($){
    $.fn.loveNotHate = function(customOptions){
        return this.each(function(){
 
    
            $(this).text($(this).text().replace(/hate/g,
            $.fn.loveNotHate.defaultOptions.text));
        });
    };
    $.fn.loveNotHate.defaultOptions = {text:'love'};
})(jQuery);
$('p').loveNotHate({text:'love-love-love'});
</script></body></html>
A
jQuery
plugin
in
6
steps
Step
6.
add
custom
op)ons
<!DOCTYPE html><html><body>
<p>I hate jQuery!</p>
<p>I mean really hate jQuery!</p>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/
jquery.min.js"></script>
<script>
(function($){
    $.fn.loveNotHate = function(customOptions){
        var options = $.extend({},$.fn.loveNotHate.defaultOptions,
        customOptions);
        return this.each(function(){
 
    
            $(this).text($(this).text().replace(/hate/g,
            $.fn.loveNotHate.defaultOptions.text));
        });
    };
    $.fn.loveNotHate.defaultOptions = {text:'love'};
})(jQuery);
$('p').loveNotHate({text:'love-love-love'});
</script></body></html>
A
jQuery
plugin
in
6
steps
Step
6.
add
custom
op)ons
<!DOCTYPE html><html><body>
<p>I hate jQuery!</p>
<p>I mean really hate jQuery!</p>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/
jquery.min.js"></script>
<script>
(function($){
    $.fn.loveNotHate = function(customOptions){
        var options = $.extend({},$.fn.loveNotHate.defaultOptions,
        customOptions);
        return this.each(function(){
 
    
            $(this).text($(this).text().replace(/hate/
            g,options.text));
        });
    };
    $.fn.loveNotHate.defaultOptions = {text:'love'};
})(jQuery);
$('p').loveNotHate({text:'love-love-love'});
</script></body></html>
Plugins
are
simple,
just
follow
the
steps!
jQuery
News
• jQuery.org
&
Founda)on
(Sobware
Freedom
Law

  Center)
• Tax‐deduc)ble
dona)ons
• Four
conferences
next
year
(Boston,
San
Francisco,

  London,
and
online)
• Infrastructure
Upgrade
(MediaTemple
Sponsorship)
• New
Plugin
site
(h]p://plugins.jquery.com)
• jQuery
Forum
(moving
away
from
Google
Groups)
?
Jonathan
Sharp
(@jdsharp)

 Special
thanks
to
Cody
Lindley
Ad

More Related Content

What's hot (20)

jQuery Presentation
jQuery PresentationjQuery Presentation
jQuery Presentation
Rod Johnson
 
jQuery Basic API
jQuery Basic APIjQuery Basic API
jQuery Basic API
Hyeonseok Shin
 
jQuery quick tuts
jQuery quick tutsjQuery quick tuts
jQuery quick tuts
Nasa Vietnam
 
Introduction to jQuery
Introduction to jQueryIntroduction to jQuery
Introduction to jQuery
manugoel2003
 
Learning jQuery made exciting in an interactive session by one of our team me...
Learning jQuery made exciting in an interactive session by one of our team me...Learning jQuery made exciting in an interactive session by one of our team me...
Learning jQuery made exciting in an interactive session by one of our team me...
Thinqloud
 
Jquery
JqueryJquery
Jquery
Girish Srivastava
 
jQuery
jQueryjQuery
jQuery
Mostafa Bayomi
 
jQuery
jQueryjQuery
jQuery
Dileep Mishra
 
jQuery: Nuts, Bolts and Bling
jQuery: Nuts, Bolts and BlingjQuery: Nuts, Bolts and Bling
jQuery: Nuts, Bolts and Bling
Doug Neiner
 
jQuery Fundamentals
jQuery FundamentalsjQuery Fundamentals
jQuery Fundamentals
Gil Fink
 
Jquery-overview
Jquery-overviewJquery-overview
Jquery-overview
Isfand yar Khan
 
Getting the Most Out of jQuery Widgets
Getting the Most Out of jQuery WidgetsGetting the Most Out of jQuery Widgets
Getting the Most Out of jQuery Widgets
velveeta_512
 
JQuery introduction
JQuery introductionJQuery introduction
JQuery introduction
NexThoughts Technologies
 
Introduction to jQuery
Introduction to jQueryIntroduction to jQuery
Introduction to jQuery
Gunjan Kumar
 
Drupal Best Practices
Drupal Best PracticesDrupal Best Practices
Drupal Best Practices
manugoel2003
 
jQuery from the very beginning
jQuery from the very beginningjQuery from the very beginning
jQuery from the very beginning
Anis Ahmad
 
FuncUnit
FuncUnitFuncUnit
FuncUnit
Brian Moschel
 
jQuery('#knowledge').appendTo('#you');
jQuery('#knowledge').appendTo('#you');jQuery('#knowledge').appendTo('#you');
jQuery('#knowledge').appendTo('#you');
mikehostetler
 
Prototype & jQuery
Prototype & jQueryPrototype & jQuery
Prototype & jQuery
Remy Sharp
 
Learning jQuery in 30 minutes
Learning jQuery in 30 minutesLearning jQuery in 30 minutes
Learning jQuery in 30 minutes
Simon Willison
 
jQuery Presentation
jQuery PresentationjQuery Presentation
jQuery Presentation
Rod Johnson
 
Introduction to jQuery
Introduction to jQueryIntroduction to jQuery
Introduction to jQuery
manugoel2003
 
Learning jQuery made exciting in an interactive session by one of our team me...
Learning jQuery made exciting in an interactive session by one of our team me...Learning jQuery made exciting in an interactive session by one of our team me...
Learning jQuery made exciting in an interactive session by one of our team me...
Thinqloud
 
jQuery: Nuts, Bolts and Bling
jQuery: Nuts, Bolts and BlingjQuery: Nuts, Bolts and Bling
jQuery: Nuts, Bolts and Bling
Doug Neiner
 
jQuery Fundamentals
jQuery FundamentalsjQuery Fundamentals
jQuery Fundamentals
Gil Fink
 
Getting the Most Out of jQuery Widgets
Getting the Most Out of jQuery WidgetsGetting the Most Out of jQuery Widgets
Getting the Most Out of jQuery Widgets
velveeta_512
 
Introduction to jQuery
Introduction to jQueryIntroduction to jQuery
Introduction to jQuery
Gunjan Kumar
 
Drupal Best Practices
Drupal Best PracticesDrupal Best Practices
Drupal Best Practices
manugoel2003
 
jQuery from the very beginning
jQuery from the very beginningjQuery from the very beginning
jQuery from the very beginning
Anis Ahmad
 
jQuery('#knowledge').appendTo('#you');
jQuery('#knowledge').appendTo('#you');jQuery('#knowledge').appendTo('#you');
jQuery('#knowledge').appendTo('#you');
mikehostetler
 
Prototype & jQuery
Prototype & jQueryPrototype & jQuery
Prototype & jQuery
Remy Sharp
 
Learning jQuery in 30 minutes
Learning jQuery in 30 minutesLearning jQuery in 30 minutes
Learning jQuery in 30 minutes
Simon Willison
 

Similar to Stack Overflow Austin - jQuery for Developers (20)

Devdays Seattle jQuery Intro for Developers
Devdays Seattle jQuery Intro for DevelopersDevdays Seattle jQuery Intro for Developers
Devdays Seattle jQuery Intro for Developers
cody lindley
 
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
Doris Chen
 
Jqueryforbeginnersjqueryconference2009 090914063709 Phpapp02
Jqueryforbeginnersjqueryconference2009 090914063709 Phpapp02Jqueryforbeginnersjqueryconference2009 090914063709 Phpapp02
Jqueryforbeginnersjqueryconference2009 090914063709 Phpapp02
careersblog
 
bcgr3-jquery
bcgr3-jquerybcgr3-jquery
bcgr3-jquery
tutorialsruby
 
bcgr3-jquery
bcgr3-jquerybcgr3-jquery
bcgr3-jquery
tutorialsruby
 
Jquery News Packages
Jquery News PackagesJquery News Packages
Jquery News Packages
UC Berkeley Graduate School of Journalism
 
How I Learned to Stop Worrying and Love jQuery (Jan 2013)
How I Learned to Stop Worrying and Love jQuery (Jan 2013)How I Learned to Stop Worrying and Love jQuery (Jan 2013)
How I Learned to Stop Worrying and Love jQuery (Jan 2013)
David Giard
 
jQuery for web development
jQuery for web developmentjQuery for web development
jQuery for web development
iFour Institute - Sustainable Learning
 
The Inclusive Web: hands-on with HTML5 and jQuery
The Inclusive Web: hands-on with HTML5 and jQueryThe Inclusive Web: hands-on with HTML5 and jQuery
The Inclusive Web: hands-on with HTML5 and jQuery
colinbdclark
 
Jquery fundamentals
Jquery fundamentalsJquery fundamentals
Jquery fundamentals
Salvatore Fazio
 
Mume JQueryMobile Intro
Mume JQueryMobile IntroMume JQueryMobile Intro
Mume JQueryMobile Intro
Gonzalo Parra
 
jQuery UI and Plugins
jQuery UI and PluginsjQuery UI and Plugins
jQuery UI and Plugins
Marc Grabanski
 
20111014 mu me_j_querymobile
20111014 mu me_j_querymobile20111014 mu me_j_querymobile
20111014 mu me_j_querymobile
Erik Duval
 
Introduction to Jquery
Introduction to JqueryIntroduction to Jquery
Introduction to Jquery
Amzad Hossain
 
Bcblackpool jquery tips
Bcblackpool jquery tipsBcblackpool jquery tips
Bcblackpool jquery tips
Jack Franklin
 
JQuery UI
JQuery UIJQuery UI
JQuery UI
Gary Yeh
 
Javascript Libraries
Javascript LibrariesJavascript Libraries
Javascript Libraries
elliando dias
 
Intro to jQuery
Intro to jQueryIntro to jQuery
Intro to jQuery
Ralph Whitbeck
 
Learning jquery-in-30-minutes-1195942580702664-3
Learning jquery-in-30-minutes-1195942580702664-3Learning jquery-in-30-minutes-1195942580702664-3
Learning jquery-in-30-minutes-1195942580702664-3
luckysb16
 
jQuery in the [Aol.] Enterprise
jQuery in the [Aol.] EnterprisejQuery in the [Aol.] Enterprise
jQuery in the [Aol.] Enterprise
Dave Artz
 
Devdays Seattle jQuery Intro for Developers
Devdays Seattle jQuery Intro for DevelopersDevdays Seattle jQuery Intro for Developers
Devdays Seattle jQuery Intro for Developers
cody lindley
 
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
Doris Chen
 
Jqueryforbeginnersjqueryconference2009 090914063709 Phpapp02
Jqueryforbeginnersjqueryconference2009 090914063709 Phpapp02Jqueryforbeginnersjqueryconference2009 090914063709 Phpapp02
Jqueryforbeginnersjqueryconference2009 090914063709 Phpapp02
careersblog
 
How I Learned to Stop Worrying and Love jQuery (Jan 2013)
How I Learned to Stop Worrying and Love jQuery (Jan 2013)How I Learned to Stop Worrying and Love jQuery (Jan 2013)
How I Learned to Stop Worrying and Love jQuery (Jan 2013)
David Giard
 
The Inclusive Web: hands-on with HTML5 and jQuery
The Inclusive Web: hands-on with HTML5 and jQueryThe Inclusive Web: hands-on with HTML5 and jQuery
The Inclusive Web: hands-on with HTML5 and jQuery
colinbdclark
 
Mume JQueryMobile Intro
Mume JQueryMobile IntroMume JQueryMobile Intro
Mume JQueryMobile Intro
Gonzalo Parra
 
20111014 mu me_j_querymobile
20111014 mu me_j_querymobile20111014 mu me_j_querymobile
20111014 mu me_j_querymobile
Erik Duval
 
Introduction to Jquery
Introduction to JqueryIntroduction to Jquery
Introduction to Jquery
Amzad Hossain
 
Bcblackpool jquery tips
Bcblackpool jquery tipsBcblackpool jquery tips
Bcblackpool jquery tips
Jack Franklin
 
Javascript Libraries
Javascript LibrariesJavascript Libraries
Javascript Libraries
elliando dias
 
Learning jquery-in-30-minutes-1195942580702664-3
Learning jquery-in-30-minutes-1195942580702664-3Learning jquery-in-30-minutes-1195942580702664-3
Learning jquery-in-30-minutes-1195942580702664-3
luckysb16
 
jQuery in the [Aol.] Enterprise
jQuery in the [Aol.] EnterprisejQuery in the [Aol.] Enterprise
jQuery in the [Aol.] Enterprise
Dave Artz
 
Ad

Recently uploaded (20)

Semantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AISemantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AI
artmondano
 
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
 
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
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdfComplete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Software Company
 
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
 
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfThe Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
Abi john
 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
 
Generative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in BusinessGenerative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in Business
Dr. Tathagat Varma
 
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
 
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
 
Cybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure ADCybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure AD
VICTOR MAESTRE RAMIREZ
 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
 
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
 
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
 
Semantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AISemantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AI
artmondano
 
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
 
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
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdfComplete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Software Company
 
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
 
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfThe Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
Abi john
 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
 
Generative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in BusinessGenerative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in Business
Dr. Tathagat Varma
 
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
 
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
 
Cybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure ADCybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure AD
VICTOR MAESTRE RAMIREZ
 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
 
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
 
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
 
Ad

Stack Overflow Austin - jQuery for Developers