Показать сообщение отдельно
  #3 (permalink)  
Старый 20.06.2018, 12:50
Профессор
Отправить личное сообщение для Nexus Посмотреть профиль Найти все сообщения от Nexus
 
Регистрация: 04.12.2012
Сообщений: 3,791

<th scope="col" class="filter-control reload_id" style="cursor:pointer">id</th>
<th scope="col" class="filter-control reload_name" style="cursor:pointer">Имя</th>
<th scope="col" class="filter-control reload_price" style="cursor:pointer">Цена</th>

<script>
    $(document).ready(function() {
        var get_por = '<?php echo $table_sort ?>';

        $('.filter-control').click(function() {
            location.href = 'index.php?sort =' + [].filter.call(this.classList, function(item) {
                return item.indexOf('reload_') == 0;
            }).shift().replace('reload_', '') + '&por=' + get_por;
        });

        $('.reload_rating').click(function() {
            $.ajax({
                url: "index.php?sort=rating&por=" + get_por,
                cache: false,
                success: function(html) {
                    $("#reloader").html(html);

                }
            });
        });
    });
</script>
Ответить с цитированием