<div>
クリックしたときにしようとしています。私がそれを試してみたとき、.live()
それは私に示しています:
オブジェクトにはメソッドlive()がありません
jQueryバージョン1.9を使用しlive
ているため、削除されました。
$(document).ready(function(){
$('#addhelper').click(function(){
$('div#containerr').append('<div class ="helpcont"><input type="text" name="helper_caption[]" class="input-large" placeholder="Caption">'+
'<input type="text" name="helper_url" class="input-large" placeholder="Url">'+
'<input type="text" name = "helper_source" class="input-large" placeholder="Source"><button class = "remove" type="button">remove</button></div>');
});
$("button.remove").on({
click: function(){
$(this).remove('div.helpcont');
}
});
});