Skip to content

Instantly share code, notes, and snippets.

@cmilfont
Created June 28, 2010 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmilfont/456273 to your computer and use it in GitHub Desktop.
Save cmilfont/456273 to your computer and use it in GitHub Desktop.
/* essa chamada evita o conflito com outros
frameworks que usam dollar ($) */
jQuery.noConflict();
(function($) {
// Seu código jquery vai aqui
$("#id_do_elemento").load("caminho.html");
})(jQuery);
//codigo prototype
$("id_de_algum_elemento").hide();
//...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment