You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to CS193H High Performance Web Sites
Hi,
I am using the following code which was mentioned in the class for
avoiding blocking of the javascript.
var se = document.createElement('script');
se.src = 'target_files/triggerParams_270148.js';
document.getElementsByTagName('head')[0].appendChild(se);
I removed this code:
<script type="text/javascript" src="target_files/
triggerParams_270148.js"></script>
from the htm file and used the creatElement code. Now the problem is
that when the page is rendered the three lines on the top are shown on
the page. I am using Firefox.
Any ideas what is wrong?
Thanks,
Sara
Eric Lovett
unread,
Dec 1, 2008, 7:46:44 PM12/1/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to CS193H High Performance Web Sites
Thanks! Problem solved.
On Dec 1, 4:46 pm, "Eric Lovett" <etlov...@gmail.com> wrote:
> Did you wrap those lines in the following?
>
> <script type="text/javascript">
> ...
> </script>
>
> Eric Lovett