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

  • Users: Zindagi
  • Order by date
  1. Zindagi

    MS HTML Help files on Linux

    Hi, I think .chm file are specific to MS windows only. I am unable to launch it on RH8.0, Plz let me know how you are able to launch it on Linux. Thanks.
  2. Zindagi

    Question regarding dropdowns

    Can do this also: function tryThis() { if(cars.options[colors.selectedIndex].value == "-") { colors.options[0].selected = true; } } And call this method on onChange of Cars Drop Down. Harsh [sunshine]
  3. Zindagi

    JavaScript Function to check numeric not working?

    Hi! isNaN() method will return false if entered text is Integer or float(contains decimal). But if you want to take only Integer values then firstly check with isNaN() then again check for indexOf(".") if it return -1 then entered text is Integer else not. Like this:::: function...
  4. Zindagi

    JavaScript Function to check numeric not working?

    Hi! To check the the entered text is integer or not you can also use isNaN() just like this::: function checkIt() { var aStr = frmUser.PhoneW.value if(isNaN(aStr)) { alert("Please enter a integer value for telephone.") frmUser.PhoneW.focus() return false...
  5. Zindagi

    XP and JAVA Script

    Hi! I am working with XP and finding Java script running fine. Harsh.

Part and Inventory Search

Back
Top