Jump to content

wakmp

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

wakmp's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. <input type='text' name='field1' id='field1' onblur='check();'><br> <input type='text' name='field2' id='field2' onblur='check();'><br> <input type='text' name='field3' id='field3' onblur='check();'><br> <input type='text' name='field4' id='field4' style='display:none;'><br> <input type='text' name='field5' id='field5' style='display:none;'><br> <input type='text' name='field6' id='field6' style='display:none;'> <script language='javascript'> function check(){ if(field1.value != '' && field2.value != '' && field3.value != ''){ field4.style.display = 'block'; field5.style.display = 'block'; field6.style.display = 'block'; } } </script> Like this ?
  2. <script language='javascript'> var pop = window.createPopup(); function show(){ pop.document.open(); pop.document.write('<body bgColor="green">ha , look here !</body>'); pop.document.close(); pop.show(300,300,100,100); } </script> <a href='javascript:show();'>Popup</a> Try that!
  3. <input type='text' name='text1' readonly> if you have the text disabled , it will not work , I think
  4. onsubmit="return check[color=red][u]F[/u][/color]orm(this);" I think you should use lowercase : onsubmit="return check[color=green][u]f[/u][/color]orm(this);"
  5. May be: <form name="form" action="upload2.php" method="POST" onsubmit="return checkForm([color=red]this[/color])"> try it .
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.