I'm using a code that uses $ of jQuery, but when using the dollar sign it's error on the console and the jQuery code does not work. The only solution was to use jQuery instead of $ :
jQuery(document).ready(function(){
jQuery("#finalizarcadastrojovem").click(function(){
var form = jQuery("#nome").val();
console.log(form);
return false;
})
})
I would like to know how to fix this, since I want to use $ and not jQuery