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 IamaSherpa 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. irinapl

    Combine two javascript functions??

    I found out: here is the code: function addOnClickFunction(elem, newFunction){ var orig = elem.onclick; elem.onclick = function(){ newFunction(); if(orig){ orig(); } } }
  2. irinapl

    Combine two javascript functions??

    Is it possible to combine two JavaScritpt functions? I want to "automatically" add a function to all input fields. But origianl function sould also be called. Example: I have a following field: <input onchange="alert('hi ')"> Then I want to add a call to function sayHello(){...
  3. irinapl

    Custom tag attribute?

    Thanks very much, feherke.
  4. irinapl

    Custom tag attribute?

    Thank you Feherke, Is there any other way to mark the element, so that I can chack for that mark later? I have a lot of fields in the form and some of them need to be marked. irinapl
  5. irinapl

    Custom tag attribute?

    Hi, I need to add custom attribute to the "html:text" tag. Example: <html:text name="emailForm" property="email" performValidate="true" /> And the result would be <input type="text" name="email" value="" performValidate="true"> The attribute "performValidate" will then be checked with...

Part and Inventory Search

Back
Top