Skip to content

Instantly share code, notes, and snippets.

@sivakumar-kailasam
Last active October 5, 2015 17:58
Show Gist options
  • Save sivakumar-kailasam/2849652 to your computer and use it in GitHub Desktop.
Save sivakumar-kailasam/2849652 to your computer and use it in GitHub Desktop.
how to use jQuery no conflict
var $jq = jQuery.noConflict(); //from here i can use $jq instead of $ to access jQuery functions
$jq(function() {
$jq('#list').each( .... );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment