SkyRanger Posted June 5, 2007 Share Posted June 5, 2007 Main Window <form method="post" action="" name="post"> <SCRIPT LANGUAGE='JavaScript'> <!-- function Smiles(which) { document.post.bmsg.value = document.post.bmsg.value + which; } function MM_openBrWindow(theURL,winName,features) { //v2.0 window.open(theURL,winName,features); } //--> </SCRIPT> <textarea name="bmsg" cols="50" rows="6"></textarea> ..more form code. Popup <script language="JavaScript"> <!-- function addSmilie(smilie,post,bmsg) { var revisedMessage; var currentMessage = window.opener.post.elements[bmsg].value; revisedMessage = currentMessage+smilie; window.opener.document.post.elements[bmsg].value=revisedMessage; window.opener.document.post.elements[bmsg].focus(); return; } //--> </head> <body> <a href="javascript:;" onClick="addSmilie(' :-t ','post','bmsg');"><img src="../images/smilies/timeout.gif" BORDER=0 alt=":-t"></A> As I mentioned everything works no problem in IE, but I tested it in FF today and it will not work. Can anybody see what the problem is. Link to comment https://forums.phpfreaks.com/topic/54202-works-in-ie-but-not-ff/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.