Cái này áp dụng khi anh chị cần show hoặc hide một element nào đó
1 2 3 |
$('#rich_snippet_pro_article_enable').change(function(){ $('.article-bottom').toggle( this.checked ) }).change() |
mã html
1 2 3 4 5 6 7 |
<input name="rich_snippet_pro[article_enable]" id="rich_snippet_pro_article_enable" type="checkbox" value="1" > </div> </div> </div> <div class="article-bottom"> Thành phần để show hoặc hide </div> |
1 2 3 4 5 6 7 8 |
$('#rich_snippet_pro_organization_logo').change(function(){ console.log($(this).val()); if($(this).val() == 2){ $('.rich_snippet_pro_organization_logo_upload').show(); }else{ $('.rich_snippet_pro_organization_logo_upload').hide(); } }).change(); |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
$(document).on('mouseleave','.rich-snippets-pro-star-rating-wrap',function(e){ var submit_data = { 'action': 'rich_snippets_pro_rating_mouse_leave', 'post_id': $('.rich-snippets-pro-out').data('post_id'), }; //console.log(submit_data); $.ajax({ type: 'POST', url: richsnippetpro_vars.ajax_url, data: submit_data, success: function ( response ) { //console.log(response); if ( 'success' == response.status ) { $('.rich-snippets-pro-star-rating-wrap').html(response.rating_star); $('.rich-snippets-pro-summary-wrap').html(response.rating_summary); } else { } }, error: function( e ) { } }); }); |
1 |
e.preventDefault(); |
1 |
var message = tinyMCE.activeEditor.getContent(); |
1 |
window.location.href = url_search; |
1 |
Pulling... |
1 2 3 |
$('html, body').animate({ scrollTop: $("#agency_information_out").offset().top }, 1000); |
1 |
location.reload(); |
1 2 3 |
$('.vaydep_filter_custom').click(function() { $('.vaydep_filter_custom').not(this).prop('checked', false); }); |
10. ajax cơ bản (basic ajax)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
var submit_data = { action: 'request_data_import', cat_id: cat_id }; $.ajax({ type: 'POST', url: '<?php echo admin_url('admin-ajax.php'); ?>', //url: kitimportelementor_vars.ajax_url, data: submit_data, success: function ( response ) { if ( 'success' == response.status ) { } } }); |
Mọi sự sao chép xin ghi rõ nguồn là fcwordpress.net
Chuyên trang về wordpress: hướng dẫn thiết kế theme, plugin, thủ thuật wordpress