kisabelle
1/29/2014 - 7:26 PM

jQuery Master / Javascript MASTER - jQuery and Wordpress - traversing the DOM

jQuery Master / Javascript MASTER

  • jQuery and Wordpress
  • traversing the DOM

//-------------------------------------
// USING JQUERY WITH WORDPRESS
//-------------------------------------

// No conflict mode
jQuery(document).ready(function ($) {
});

(function($){
  $(window).load(function(){
  }); // window.load
})(jQuery); 

//-------------------------------------
// TRAVERSING THE DOM
//-------------------------------------

// Find immediate previous sibling's child
$(targetDiv).prev().find( "a.learn-more" );