Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i want to pass the event to function in javascript suppose. i am fire function from two input. then how i can call the event with passing parameter.

can i do this using calling and without binding event in jQuery.

share|improve this question
Keyword: "closure" (although this can be wrapped in many different ways.) – user166390 Jul 29 '11 at 6:01
See stackoverflow.com/questions/1300242/… and stackoverflow.com/questions/4429328/… for instance. – user166390 Jul 29 '11 at 6:01

2 Answers

up vote 0 down vote accepted

Example:

function DoCSSStuff(param1,param2)
{
     $(param1).css('height', param2);

};

That way you could call the css function to manipulate height with passed parameters.

share|improve this answer

I'm not exactly sure what you're asking, but here's an example of passing a function with parameters as a callback:

setTimeout(function() {
    return myFunction(false, 3);
}, 1000);

You wrap your function call in an anonymous function wrapper.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.