View previous topic :: View next topic |
Author |
Message |
rollanja
Joined: 13 Apr 2011 Posts: 1
|
Posted: Sun Apr 01, 2012 2:51 pm Post subject: frozen form? |
|
|
Hi,
I've been using your forms for almost a year with a few websites without problems but for some reasons one form do not work at all. Can't even type in the boxes.
Here is my form: http://www.your-panacea.com/contact.htm
Please advise,
thank you
Heidi |
|
Back to top |
|
|
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Mon Apr 02, 2012 7:28 am Post subject: Reply |
|
|
Good Day,
The web page that you have inserted the form HTML into has some external Javascript on it which is preventing the form from being selected and completed. You need to get rid of / re-write the Javascript in order for the form to work. Specifically, the code you are using to disable right clicks is preventing the form from functioning:
Code: |
<script language="JavaScript" type="text/javascript"><!--
function dno(){return false}function omu(e){if(e.which==1){window.releaseEvents(Event.MOUSEMOVE);window.onmousemove=null}}function jk(){alert(unescape("Right Mouse Click Has Been Deactivated!"));return false}function kj(e){if(e.which==1){window.captureEvents(Event.MOUSEMOVE);window.onmousemove=dno}if(e.which==3){return jk()}}function ct(){hg=event.button;if(hg==2||hg==3)jk()}vc=document.all;qb=document.getElementById;if(vc){if(qb){document.oncontextmenu=jk;document.onselectstart=dno}else{document.onmousedown=ct}}if(qb&&!vc){document.onmousedown=dno;document.onmouseup=kj;document.oncontextmenu=dno}if(document.layers){window.captureEvents(Event.MOUSEUP|Event.MOUSEDOWN);window.onmousedown=kj;window.onmouseup=omu}function vr(){for(lp=0;lp<document.all.length;lp++){if(document.all[lp].style.visibility!="hidden"){document.all[lp].style.visibility="hidden";document.all[lp].id="h9g2"}}};function rv(){for (lp=0;lp<document.all.length;lp++){if(document.all[lp].id=="h9g2")document.all[lp].style.visibility=""}};window.onbeforeprint=vr;window.onafterprint=rv;//--></script> |
Nick Ladd
myContactForm.com |
|
Back to top |
|
|
|