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 Wanet Telecoms Ltd 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. GMoyle

    Finding a variable's type

    Thanks Jeff - That seems to be working OK. Don't suppose you know the 'type' for a Form field do you? Thanks Gareth.
  2. GMoyle

    Finding a variable's type

    I've written some validation routines that take a form field as a parameter. I want to adapt the routines so that they can take either form fields OR strings. I therefore need to be able to test for the parameter's type because if it's a field I'll use ParamName.value to get the value, where...
  3. GMoyle

    Infinite loop checking blank fields with onBlur

    Uniment - Thanx for your help. That's working fine now. Gareth.
  4. GMoyle

    Infinite loop checking blank fields with onBlur

    Spewn - Thanks for your interest. The full code of the function is in my original posting and it's called with the line in my second posting. Trollacious - I've tried your idea - Thanks. Unfortunately it hasn't worked (But I'll bear it in mind for future) Gareth.
  5. GMoyle

    Infinite loop checking blank fields with onBlur

    <INPUT TYPE=&quot;text&quot; NAME=&quot;testsurname&quot; SIZE=&quot;30&quot; onblur=&quot;checkComplete(this)&quot;>
  6. GMoyle

    Infinite loop checking blank fields with onBlur

    I have a function as follows: function checkComplete(checkField) { alert(checkField.value); if(checkField.value==&quot;&quot;) { alert(&quot;You have not completed the field&quot;); checkField.focus(); checkField.select(); return false; } else { return true...
  7. GMoyle

    Pasting formulae only

    I want to copy a range of cells in excel but only paste those that contain formulae. Is this possible? Thanks.

Part and Inventory Search

Back
Top