[jQuery] Re: Include javafile

2007-11-19 Thread Muhammad Mohsin
thanks seedy for the help. now i m including all js file in bottom of page. but jquery seems to have problem in bottom. do u know wht is the issue

[jQuery] Re: Include javafile

2007-11-01 Thread Muhammad Mohsin
i mean in head of the page. head meta http-equiv=Content-Type content=text/html; charset=iso-8859-1 ? include($ROOT_PATH/includes/meta.php); ? script src=? echo $URL_PATH; ?/javascript/jquery/jquery.js type=text/javascript /script script src=? echo $URL_PATH;

[jQuery] Re: Include javafile

2007-11-01 Thread Muhammad Mohsin
jquery code is in listing java $('.price_convert').each(function() { $(this).mouseover(function() { alert(IN); }); $(this).mouseout(function() { alert(OUT); }); }); });

[jQuery] Re: Include javafile

2007-11-01 Thread seedy
I cant see any immediate reason why that would not work, however I thought i would point out that putting your scripts at the bottom of the page is actually the recommended way of including scripts. http://developer.yahoo.com/performance/rules.html#js_bottom Muhammad Mohsin wrote: i mean