asked on July 13, 2018
•
Show version history
Hi all,
How can I make a "onchange" on the collection?
I tried this :
$("#Field31").change(function() { alert("The text has been changed."); });
$("#Field31(1)").change(function() { alert("The text has been changed."); });
$('[id^=Field31]').change(function() { alert("The text has been changed."); });
But it doesn't work.
0
0