javascript - dom not loading when referencing an external js file -
i referencing jquery library, in master page so:
<script type ="text/javascript" src ="../../scripts/jquery-1.4.1.js" /> the page loads , presented blank screen. if take @ source hmtl code present, browser not displaying of elements.
i have tried co-locating master , js fail no avail.
opening ff firebug following error :
failed load source for: http://localhost:50417/scripts/jquery-1.4.1.js , yet navigating url able load js.
any appreciated.
it's not valid use /> shortcut script tags. must like
<script type ="text/javascript" src ="../../scripts/jquery-1.4.1.js"></script>
Comments
Post a Comment