We have a little proble, we are have some javascrip on our site that opens a pop up window then gers rewritten using javascrip, it the only way we can sort out a problem, on all pc (Windows and Linux) browsers it seams ok but using safari on Mac it not working any ideas.
TA
Here the scrip we use!
mywondows = window.open('writeme.html','TellAFriend','width=450,height=600');
mywondows.document.write("<html>");
mywondows.document.write("<body>");
mywondows.document.write("Working Please Wait........")
mywondows.document.write("<form method='post' name='myform' action='sendm.php' target='_self'>");
mywondows.document.write("<input type='hidden' name='urlis' value='" + window.location + "?osadcampaign=tf'>");
mywondows.document.write("<input type='hidden' name='productname' value ='" + productname +"'>");
mywondows.document.write("</form>");
mywondows.document.write("</body>");
mywondows.document.write("</html>");
mywondows.document.myform.submit();
TA
Here the scrip we use!
mywondows = window.open('writeme.html','TellAFriend','width=450,height=600');
mywondows.document.write("<html>");
mywondows.document.write("<body>");
mywondows.document.write("Working Please Wait........")
mywondows.document.write("<form method='post' name='myform' action='sendm.php' target='_self'>");
mywondows.document.write("<input type='hidden' name='urlis' value='" + window.location + "?osadcampaign=tf'>");
mywondows.document.write("<input type='hidden' name='productname' value ='" + productname +"'>");
mywondows.document.write("</form>");
mywondows.document.write("</body>");
mywondows.document.write("</html>");
mywondows.document.myform.submit();
Comment