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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.