You can use .change
for what you want
$("input[@name="lom"]").change(function(){
// Do something interesting here
});
as of jQuery 1.3
you no longer need the ‘@’. Correct way to select is:
$("input[name="lom"]")
You can use .change
for what you want
$("input[@name="lom"]").change(function(){
// Do something interesting here
});
as of jQuery 1.3
you no longer need the ‘@’. Correct way to select is:
$("input[name="lom"]")