есть форма:
<form id="forma" name="formReqToService">
<input type="text" name="nameClient" value="" placeholder="Имя">
<input type="text" name="emailClient" value="" placeholder="E-mail">
<textarea name="messageClient" rows="8" cols="80" placeholder="Message"></textarea>
<input type="submit" name="sbmtReqToService" value="Отправить">
</form>
находится она в файле, который ajax'ом подгружается на страницу, так вот вопрос, как мне с помощью js, обратится к кнопке отправить?
П.С.: пробовал так:
$(document).ready(function(){
var form = $("form");
form.find("input[type='submit']").click(function(event) {
alert('buttonok');
});
});
результат никакого