how to Change dynamic button text on mouseover by jQuery,
button
<button type="button" id="sendRequest" ><span>Avialable Now</span></button>
jquery
$(document).ready(function(){
$('#sendRequest').hover(function() {
$(this).find('span').text('Send Request');
}, function() {
$(this).find('span').text('Avialable Now');
});
});
I want to change text on every dynamacly created button,with above I can change text on only single or first button.