skip to Main Content

jQuery Sortable very slow

i have sortable problem in jquey. In case of 1000 records, the page takes about 5 seconds to load. Can it be optimized? Ultimately, the database will have 4,000 records <tbody class="row_position"> <?php while($user = $users->fetch_assoc()){ ?> <tr id="<?php echo…

VIEW QUESTION

How can I convert jQuery ajax to fetch?

This was my jQuery code before. Now I want to change it to fetch. function fetch(){ jQuery.ajax({ url: '<?php echo admin_url('admin-ajax.php'); ?>', type: 'post', data: { action: 'data_fetch', keyword: jQuery('#keyword').val(), pcat: jQuery('#cat').val() }, success: function(data) { jQuery('#datafetch').html( data ); }…

VIEW QUESTION

Global JS function Not Available WordPress – jQuery

My global function is not available because "$ is not a function". But I do have jquery as a dependency to my own js file: wp_enqueue_script('common-js', get_stylesheet_directory_uri() . '/js/common.js', array('jquery'), CHILD_THEME_ASTRA_CHILD_VERSION, true); Why I cannot use jQuery outside of document…

VIEW QUESTION
Back To Top
Search