I am using a JQuery file < 1.9.1 and $.browser when utilized is showing undefined. When I call $ in the console I get:
function (e,t){return new b.fn.init(e,t,r)}
My header linking looks like this:
<script type="text/javascript" src="jquery.js" ></script>
<script type="text/javascript" src="mobile.js"></script>
Inside of my mobile.js looks like this:
jQuery(document).ready(function(){
console.log('works');
});
Now when I put $.browser or jQuery.browser in the Google Chrome console window I always get undefined. Do you know why this would happen? Any solutions?