On Tue, Nov 27, 2012 at 4:34 AM, Loai Ghoraba <loai1...@gmail.com> wrote: > Hi all > > When I have a script like this: > <script> window.onload=function f(){} </script> it is working fine. but when > I create an external js file and put it within the static directory, and > call the function like this > <script src="{{STATIC_URL}}js/myjs.js"></script> > <script> window.onload=f </script> > > It is not working at all. (by the way the url is mapped correctly to the js > file "I tested it via viewing the source of the web page") > > Any idea?
This appears to be a javascript issue, because your code should only fail if window.load is fired before f is defined. But you say that, url for js file works. Please use Firebug addon in Firefox to see javascript errors. -- Pankaj -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.