JQuery selector in variable
- by nagut
I wanted to ask about using selector from a variable
first I have:
function check()
{
$('.info input, .info select').each(function(n, element){
if ($(element).val()=='')
alert('empty');
});
}
and called it in
$('input')change(check);
and they worked fine.
But now I want to pass some value to the function to make it dynamic, like
$('input')change(check('.info'));
and changed the function to
function check(sel) {
$(sel +' input, '+ sel + ' select').each(function(n, element){
if ($(element).val()=='')
alert('empty');
});
}
but it doesn't work.
Any help please..
Thanks,
nagut