これを試してください。
$(document).on('click','.newsfeed-bump',function(bump_hype_product){
jQuery('#product-message-confirmation-wrap').hide();
jQuery('.popup-waiting-wrap').show();
jQuery('#modal_product_message_confirmation h4.modal-title').html('');
jQuery.ajax({
url : the_ajax_script.ajaxurl,
type : 'post',
data : {
action : 'bump_hype_product',
type : type_text,
post_id : post_id
},
success : function(response) {
jQuery('.popup-waiting-wrap').hide();
jQuery('#product-message-confirmation-wrap').show();
jQuery('#product-message-confirmation-wrap').html(response);
jQuery('#modal_product_message_confirmation').modal('show');
}
});
});
イムは "TYPE_TEXTが定義されていないキャッチされないにReferenceError" 取得
$("body").delegate(".newsfeed-bump", "click", function(){
//your code
});
または
$("body").on("click", ".newsfeed-bump" function(){
//your code
});
あなたは 'id =" document "の要素を持っていますか?" – epascarello
'$( '#document')'はIDが 'document'の要素を探しているということですか? '$(document)'がうまくいくと思います... –
JSfiddleの例を表示できますか? –