Hi guys I'm with a problem than right now i'm not understanding..
I'm using JQuery to render a icon "loading ajax" always than a request page is done.
All my pages derives from master page, but login page doens't.
What happens is that page (login) i cannot use jquery
In login page im including to jquery library and using the following code to test
<script type="text/javascript">
$(function(){
console.log('blbalbl');
});
</script>
but $ is not recognized..
If i remove
$(function(){
and leave
console.log('blabla');
blablbal will appear in console..
Anybody knows what is happening?
regards