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 SkipVought 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: *

  1. plaberge

    Return to field in form from alert box

    I got it figured out. It is probably pretty basic but I am very new to javascript. Here was my old call: <a onclick=&quot;MakeBuy (0)&quot; href=&quot;#&quot;> <img src=&quot;http://images.paypal.com/images/sc-but-03.gif&quot; border=&quot;0&quot; width=&quot;106&quot...
  2. plaberge

    Return to field in form from alert box

    Here is my form code: <form name=&quot;item0&quot;> <b>Qty:</b> <input id=&quot;f00&quot; name=&quot;QTY&quot; type=&quot;text&quot; value=&quot;1&quot; size=&quot;2&quot;> <select id=&quot;f01&quot; name=&quot;Color&quot;> <option...
  3. plaberge

    Return to field in form from alert box

    I am using alert to return to a form if it is not filled out correctly. For example, I have a field for quantity that must be from 1 to 99. My code is: temp = document.item0.QTY.value; if (temp > 0 && temp < 100) { ... } else { alert (&quot;Select a numeric Quantity...
  4. plaberge

    Quick Question - Simple Answer

    Link9, I am using alert to return to a form if it is not filled out correctly. For example, I have a field for quantity that must be from 1 to 99. My code is: temp = document.item0.QTY.value; if (temp > 0 && temp < 100) { ... } else { alert (&quot;Select a numeric...

Part and Inventory Search

Back
Top