I switched it back to $jQuery. For some reason I am just not able to get my pages to use the core, at least I think that is what my problem is. From the documentation I figured:
I add the iquery registration code to the page(put mine at the top of my masterpage layout)
I changed the jquery reference from "$" to "$jQuery"
And that is where I get hung up. No matter how I seem to add my own JS file, be it a direct reference in the "head" section of the masterpage, or by using a javacript webpart, I get the:
Uncaught ReferenceError jQuery is not defined error.
Always breaking on my script pages
// DOCUMENT READY
$jQuery(document).ready(function(){
$jQuery("#menu-button").on("click",toggleMenu);
$jQuery("#header input[type='text']").on("focus",formrule_on);
$jQuery("#header input[type='text']").on("blur",formrule_off);
});
});
Document Ready call. It really feels like I am just missing something simple with the code and getting caught up in Kentico even though it may not be the issue.
Thanks again for the response.