This is a discussion on "Java script entities and firefox" within the JavaScript Forum section. This forum, and the thread "Java script entities and firefox are both part of the Program Your Website category.
|
|
|
|
|
![]() |
||
Java script entities and firefox
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
|||
|
Java script entities and firefox
Hi, i am new in JavaScript and have a small problem i am currently reading the "JavaScript complete reference" e-book, and the following example, about JavaScript entities doesn't work on Firefox 2.0.06 it works fine on ie7. the code is as follows : <head> <script language="javascript1.5"> var Bordersize=5; var tablecellcolor="#ff0000"; var alignment = "center"; function setImage (){ var today = new Date(); var hours = today.getHours(); if ((hours >8) && (hours < 18)) return 'Sunset.jpg' else return 'moon.jpg'; } </script> </head> <body> <table border="&{Bordersize };" align="&{alignment };"> <tr> <td bgcolor="&{tablecellcolor };">Java script entities</td> </tr> </table> In the sky now : <img src="&{setImage() };" /> </body> The entities in red should reefer to the variables declared and initialized in the head tag, and it does so but only in ie7, I need your help, does Firefox is not fully compatible with JavaScript, I don't think so ! |
|
|
|
||||
|
Re: Java script entities and firefox
this functionality isn't part of javascript.
this is an IE only feature which you should stay away from.
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
|
![]() |
| Tags |
| firefox, java script entities |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Help with java script | Pss | JavaScript Forum | 3 | Mar 28th, 2008 21:17 |
| Date Display - java script | ksolanki | Other Programming Languages | 2 | Mar 26th, 2008 09:51 |
| I want ecards Java Script code. Anybody help 2 me. | naagoo | JavaScript Forum | 1 | Oct 28th, 2006 14:47 |
| Java Script HELP!!!! | dandaman2006 | JavaScript Forum | 1 | May 22nd, 2006 10:07 |
| Not sure this is a java script question? | haans_gruber | JavaScript Forum | 7 | Sep 3rd, 2005 01:56 |