Sunday, 14 December 2014

Jquery No Conflicts Code Goes here

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


<script>
$.noConflict();

jQuery( document ).ready(function( $ ) {

  // Code that uses jQuery's $ can follow here.

});

// Code that uses other library's $ can follow here.

</script>

Map the original object that was referenced by $ back to $.


jQuery.noConflict();
// Do something with jQuery
jQuery( "div p" ).hide();
// Do something with another library's $()
$( "content" ).style.display = "none";

The jQuery noConflict() Method

$.noConflict(); jQuery(document).ready(function(){   jQuery("button").click(function(){     jQuery("p").text("jQuery is still working!");   }); });
You can also create your own shortcut very easily. The noConflict() method returns a reference to jQuery, that you can save in a variable, for later use. Here is an example:
var jq = $.noConflict(); jq(document).ready(function(){   jq("button").click(function(){     jq("p").text("jQuery is still working!");   }); });

No comments:

Post a Comment