Mr_J Posted November 20, 2008 Share Posted November 20, 2008 Hi This only work with IE! I`m using Chrome, FireFox, Netscape & Flock Stupid JS but no result. (now nothing works!) All I want is to change the text on mouse over. I generated the following in FrontPage 2k. <head> <script language="JavaScript" type="dynamicanimation"> <!-- function dynAnimation() {} function clickSwapImg() {} //--> </script> <script language="JavaScript1.2" type="dynamicanimation" src="animate.js"> </script> <script language="JavaScript" type="dynamicanimation"> <!-- function dynAnimation() {} function clickSwapImg() {} //--> </script> <script language="JavaScript1.2" type="dynamicanimation" src="animate.js"> </script> <script language="JavaScript" type="dynamicanimation"> <!-- function dynAnimation() {} function clickSwapImg() {} //--> </script> <script language="JavaScript1.2" type="dynamicanimation" src="animate.js"> </script> <script language="JavaScript" type="dynamicanimation"> <!-- function dynAnimation() {} function clickSwapImg() {} //--> </script> <script language="JavaScript1.2" type="dynamicanimation" src="animate.js"> </script> <script language="JavaScript" type="dynamicanimation"> <!-- function dynAnimation() {} function clickSwapImg() {} //--> </script> <script language="JavaScript1.2" type="dynamicanimation" src="animate.js"> </script> <script language="JavaScript" type="dynamicanimation"> <!-- function dynAnimation() {} function clickSwapImg() {} //--> </script> <script language="JavaScript1.2" type="dynamicanimation" src="animate.js"> </script> </head> All the above was generated bu FrontPage I changed some txt to see if it can work Like (Marked in RED) <script language="FPjavascript1.2" FPtype="dynamicanimation" In my <BODY> **Simple HTML <td width="33%"> <p dynamicanimation="AnimformatRollover" rolloverstyle="font-size: 14pt; color: #FFFF00; font-style: italic; font-weight: bold" onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2">amateur</p> </td> An again, I changed: <td width="33%"> <p dynamicanimation="FPAnimformatRolloverFP1" FProlloverstyle="font-size: 14pt; color: #FFFF00; font-style: italic; font-weight: bold" onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2">bla bla bla</p> </td> Any help please... PS. I will settle for .css as well (hover)?? Link to comment https://forums.phpfreaks.com/topic/133492-solved-only-ie-work-newbi/ Share on other sites More sharing options...
FireDrake Posted November 20, 2008 Share Posted November 20, 2008 use the [ code ] [ /code ] tags plz -.- And what's it suposed to do? Link to comment https://forums.phpfreaks.com/topic/133492-solved-only-ie-work-newbi/#findComment-694287 Share on other sites More sharing options...
Mr_J Posted November 20, 2008 Author Share Posted November 20, 2008 use the [ code ] [ /code ] tags please -.- And what's it suposed to do? Will do, Change text from blue to yellow onmouseover <head> <script language="JavaScript" type="dynamicanimation"> <!-- function dynAnimation() {} function clickSwapImg() {} //--> </script> <script language="JavaScript1.2" type="dynamicanimation" src="animate.js"> </script> <script language="JavaScript" type="dynamicanimation"> <!-- function dynAnimation() {} function clickSwapImg() {} //--> </script> <script language="JavaScript1.2" type="dynamicanimation" src="animate.js"> </script> <script language="JavaScript" type="dynamicanimation"> <!-- function dynAnimation() {} function clickSwapImg() {} //--> </script> <script language="JavaScript1.2" type="dynamicanimation" src="animate.js"> </script> <script language="JavaScript" type="dynamicanimation"> <!-- function dynAnimation() {} function clickSwapImg() {} //--> </script> <script language="JavaScript1.2" type="dynamicanimation" src="animate.js"> </script> <script language="JavaScript" type="dynamicanimation"> <!-- function dynAnimation() {} function clickSwapImg() {} //--> </script> <script language="JavaScript1.2" type="dynamicanimation" src="animate.js"> </script> <script language="JavaScript" type="dynamicanimation"> <!-- function dynAnimation() {} function clickSwapImg() {} //--> </script> <script language="JavaScript1.2" type="dynamicanimation" src="animate.js"> </script> </head> I changed some txt to see if it can work Like (Marked in RED) <script language="FPjavascript1.2" FPtype="dynamicanimation" <body> <td width="33%"> <p dynamicanimation="AnimformatRollover" rolloverstyle="font-size: 14pt; color: #FFFF00; font-style: italic; font-weight: bold" onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2">bla bla</p> </td> I deleted (FP) in the following like above <td width="33%"> <p dynamicanimation="FPAnimformatRolloverFP1" FProlloverstyle="font-size: 14pt; color: #FFFF00; font-style: italic; font-weight: bold" onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2">bla bla bla</p> </td> Link to comment https://forums.phpfreaks.com/topic/133492-solved-only-ie-work-newbi/#findComment-694300 Share on other sites More sharing options...
FireDrake Posted November 20, 2008 Share Posted November 20, 2008 Between <head> and </head> <style type="text/css"> #blue a:link { color: blue; } #blue a:visited { color: blue; text-decoration: underline; } #blue a:hover { color: yellow; text-decoration: underline; } </style> Somewhere between <body>, <table>, <tr> and </tr>, </table>, </body> <td id="blue" width="33%"> <a href="#">bla bla bla</a> </td> Link to comment https://forums.phpfreaks.com/topic/133492-solved-only-ie-work-newbi/#findComment-694318 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.