Jump to content

wakmp

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Posts posted by wakmp

  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!
×
×
  • 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.