I am creating some buttons dynamically and assigning them IDs.
When ever someone clicks that button I want to collect the ID and from there perform some task.
I am not sure I understand exactly your problem, but you can try writing
var btnId = $(this).attr('id');
instead of
var btnId = $(this).val();
this will give you the id attribute of the button clicked and not the value of the form element.
I hope this will help you
Jerome Wagner
When ever someone ll click that button I want to collect the ID and from there I ll do some task upon that.............
Try removing onclick attribute from this line:
t = t + " <tr><td style='text-align:center'>" + item.studId + "</td><td style='text-align:center'>" + item.studName + "</td><td style='text-align:center'>" + item.studCourse + "</td><td style='text-align:center'>" + item.studUsn + "</td><td><input type='button' ID='btn" + item.studId + "' value='Delete' onClick='onButtonClick()'/></td></tr>";
Making it:
t = t + " <tr><td style='text-align:center'>" + item.studId + "</td><td style='text-align:center'>" + item.studName + "</td><td style='text-align:center'>" + item.studCourse + "</td><td style='text-align:center'>" + item.studUsn + "</td><td><input type='button' ID='btn" + item.studId + "' value='Delete'/></td></tr>";
And now you can use jQuery's live method (since your button is generated dynamically) to do the trick when this button is clicked like this:
$(function(){
$('#btn').live('click', function(){
var btnId = $(this).attr('id');
alert(btnId);
});
});
Note:
To get id attribute, you can use attr method like shown above eg: $(this).attr('id') not val (which is used to get the value of an input element) like your in your code.
If you are dynamically adding buttons, think about using ".live()". Whenever the specified event happens, it follows the html elements up the tree until it is handled. This is more efficient if you have a lot of elements also because the event isn't assigned to the element itself. You need to assign a class or something to the buttons to identify them, let's say 'dynamicButton', so change this:
<input type='button' ID='btn" + item.studId +
"' value='Delete' onClick='onButtonClick()'/>
to this:
<input type='button' ID='btn" + item.studId +
"' value='Delete' class="dynamicButton"/>
And you can listen to events with this code:
$('input.dynamicButton').live('click', function (event) {
alert($(this).attr('id'));
});
This one handler will be called anytime a button with the class 'dynamicButton' is clicked no matter how it is added to the page.
Just add a class name of new-button to the buttons you're creating and add a click handler afterwards.
So replace this code
<input type='button' ID='btn"
with this
<input type='button' class="new-button" ID='btn"
You can remove the onButtonClick() from the onclick event and replace
function onButtonClick() {
var btnId = $(this).val();
alert(btnId);
}
with
$(".new-button").live("click", function() {
var buttonId = $(this).attr("id");
alert(buttonId);
});
I did this using delegate().
In my case, a PHP script generates the content of a page from a MySQL database. To each element, a button is added (clicking these buttons can remove the respective element from the database). The removal is handled by another PHP script which these buttons activate, so a click event is attached to each button like this:
$('.items').delegate('[type="button"]', 'click', remove_item);
where the buttons are part of the items class and remove_item is the callback for the removal.