Hi, I am currently doing some development in Forms where I have created a button using custom HTML within a collection. For testing purpose, the button simply display an alert message with the button ID when pressed. I have the following code:
<button id="start1" type="button">Alert</button> $("button").click(function() { alert(this.id); });
This works for the first button in the first set of collection, however when adding the second set or the third set of collection, the button in the second set or the first has no response when pressed. The first button remains functional. Does anyone have any idea or can someone point me in the right direction to get this working? Thanks.