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 strongm 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. reinholdj

    calling checkbox values on separate page

    Create a method on the 1st page that stores or sets the values you want (on the 1st page). function setX(data) { //code to set or store "data" } Call that method on the second page, in the onClick event of the checkbox, passing whatever value you want...
  2. reinholdj

    pass a "control" name to a function?

    I have several functions that are somewhat redundant, and I would like to get rid of multiple functions by passing the "control" that the function is operating on as a parameter. For example, currently we have: function x1(data) { window.document.myForm.text1.value = data; }...
  3. reinholdj

    javascript url encode.

    escape() and unescape() will do nothing with "/" and "\". If you are going to have parameters with slashes, you will need to change them yourself.
  4. reinholdj

    Disable right click without alert, in IE and NS?

    I understand that there are still ways to duplicate the actions of the right click menu. (why do people always just say "don't bother"?) I simply want to get rid of the right click menu, with no alerts. We want the pop-up as simple as possible for the users. Thats all...
  5. reinholdj

    Disable right click without alert, in IE and NS?

    I am looking for a good way to disable the right click, that does not produce an alert - and that is cross browser. (We test in IE 5+, NS 6+, and Opera 5+). We have an app that will pop up windows that allow users to chose from a set of options, then add those selections to the main page. I...

Part and Inventory Search

Back
Top