Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: farhanakhan
  • Order by date
  1. farhanakhan

    How do I prevent a row in a table from being displayed in JavaScript??

    document.formname.fieldname.visiblity=false try out this
  2. farhanakhan

    Link from pop up window

    on submit write function like this function back() { document.formname.method=post document.formanme.action="pagename" document.formname.submit() }
  3. farhanakhan

    document.write vs. response.write?

    document.write -writes the data on the screen from clientside in javascript. response.write -writes data on screen from server side in asp
  4. farhanakhan

    onsubmit error - client side - what's wrong with this code?

    write javascript function like function emp() { if(document.formname.fieldvalue==&quot;&quot;) alert (&quot;enter the value&quot;) } call this function on onsubmit of form <form name=form1 method=post action=somepage.asp Onsubmit=&quot;emp()&quot;> this will solve ur problem
  5. farhanakhan

    How to get rid of TEXT in a text box when the user starts typing

    use document.formname.fieldvalue.visiblity inthe onclick function
  6. farhanakhan

    Window.opener works, but the value will not pass!

    go to child window and write window.opener.document.formname.fieldname.value=document.formname.fieldname.value '--description this will pass the contents of parent to child window.

Part and Inventory Search

Back
Top