You need to add return false to your onclick handler for the dhtml window link not to be followed unless javascript is off in the user's browser.
Something like...
onclick="blur(); return false "
As for the content, it does appear in Firefox, just fyi.
I did notice that in your header the script tag is not closed, as well as you seem to be missing the copyright notice for dhtmlwindow
As far as closing tags, I notice you are using the <script .... /> convention. There is a known IE issue with this. (search google for "closing script tag" and you will find pages such as this one describing the issue.
Anyway, you might try changing the code to something like:
Code:
<script language="JavaScript" type="text/javascript" src="./popup/dhtmlwindow.js">
<!--
/***********************************************
* DHTML Window Widget- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for legal use.
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
//-->
</script>
Older convention, most proper. And don't forget to give credit where its due ;^)
Bookmarks