On object

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sasimca007
    New Member
    • Sep 2007
    • 129

    On object

    Hello friends,
    I am using one text box in html and when a letter typed into that i am invoking a javascript function with the this object. And i am receiving that object in one function and using it. But i want to pass that object to another function. How can i pass?
  • gits
    Recognized Expert Moderator Expert
    • May 2007
    • 5390

    #2
    your function will look like this:

    [CODE=javascript]// node is passed as this from your control
    function my_handler(node ) {
    // just pass it along here
    my_handler_2(no de);
    }[/CODE]
    in case you have problems with that ... please post your code ...

    kind regards

    Comment

    Working...