CSS
1
Вклад в тег
$(document).ready(function () {
$("body").on('click', '#send_button', function () {
//Ваш код
$(this).removeAttr("id");
});
});