Is it possible to pass a jQuery method as a parameter into a function , for example:
function set_action(a,b)
{
$(a).b;
}
$(function(){
$('#div_id1').click(function(){
set_action('#div_id2','hide()');
});
});
?
|
Is it possible to pass a jQuery method as a parameter into a function , for example:
? |
||||
|
You can access any property of an object with a string using bracket notation:
So you could do:
Note that this will throw an error if the object does not have a callable property with that name. |
|||
|
|
||||
|
|
eval("$('"+a+"')."+b);– Tim Withers Dec 29 '11 at 19:08eval()!!! Stay away fromeval(). Its extremely inefficient!!! – John Hartsock Dec 29 '11 at 19:10