We can use jQuery to find all elements that starts with of characters as shown below
$("[id*=_visible_]").each(function(element){
element.val(''); // do something with the found element.
});
Cheers,
Samitha
$("[id*=_visible_]").each(function(element){
element.val(''); // do something with the found element.
});
Cheers,
Samitha
No comments:
Post a Comment