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. annie79

    Dynamically disabling a radio button based on user selection

    The solution is rather simple and logical. I suppose you could have figured it out yourself. What you have done is --- <input type=&quot;radio&quot; name=&quot;imposterPic&quot; value=&quot;name&quot; border=&quot;0&quot;> in both the table rows... You should use different names to the radio...
  2. annie79

    I need help to remove NaN from toatl calculation field below

    The NaN comes because you are using parseFloat() function and there is no check if the value in the field is a valid number. This seems to be the only possible reason. Just another suggestion. There seems to be a lot of repeated code in your functions. Instead it is possible to use just one...
  3. annie79

    Disable right-click

    This is what I am trying to do... 1. The function is added to disable right-click. So on right-clicking the page an alert is displayed, which should have prevented the context-menu. 2. If we keep holding the right mouse-button even after the menu is popped and press SpaceBar from keyboard, the...
  4. annie79

    Firing a function for all radio buttons selected on page refresh

    Since you are refreshing the page, call the same function in the <BODY> tag. e.g. <BODY onLoad = &quot;fnNameOfFunction();&quot;> This will work...
  5. annie79

    Disable right-click

    How to disable the context-menu of the browser? I already have a JS function for that but it is still not possible to prevent the right-click if the alert is removed by keypress while holding the mouse right-button. My function is as below: <SCRIPT> function fnRightClickDisable() {...

Part and Inventory Search

Back
Top