<ul><li class="active">1</li><li>2</li><li>3</li></ul>
// ищем текущий таб который играет
var next = $('.tab.active').next();
if(next.length >0) next.trigger('click'); // посылаем событие клика на таб
function while_fetch_assoc($res)
{
$rows = [];
while($row = mysql_fetch_assoc($res)){
$rows[] = $row;
}
return $rows;
}
$rows = while_fetch_assoc($query);
echo json_encode($rows);
exit(true);
$.ajax({
type: 'post', dataType: 'json',
url: '/get_table.php',
data: {}
}).done(function(data){
$.each(data,function(key,item){
var $row = $('<tr><tr>'); // создаем tr
$('.table tbody')append($row);
console.log(item);
// АF12 смотрим что в консоле прешло
});
});
<?php
$rows = array();
while($row = mysql_fetch_assoc($res)){
$rows[] =<<<TRHTML
<tr>
<td>{$row['id']}</td>
<td>{$row['name']}</td>
</tr>
TRHTML;
}
$.each(data,function(key,item){
$('.table')append(item);
});
jQuery(document).pjax("#content a", "#content", {"push":true,"replace":false,"timeout":1000,"scrollTo":false});
jQuery(document).on('submit', "#content form[data-pjax]", function (event) {jQuery.pjax.submit(event, '#content', {"push":true,"replace":false,"timeout":1000,"scrollTo":false});});
<link media="print, handheld" rel="stylesheet" href="print.css">
@media print {
}
*/1 * * * * root /home/mybin/script.sh; /bin/sleep 15; /home/mybin/script.sh; /bin/sleep 15; /home/mybin/script.sh; /bin/sleep 15; /home/mybin/script.sh
$("#myTextField").autocomplete({
...
source: function( request ) { // Define source for AC data
..
$.ajax({ // Make Ajax call for AC data
...
success: function( data ) { // AC data returns
responseArray = $.map( data, function(item) { // build an array of hashmaps
..
return { label: item, customHTML: "<b>"+item+"</b>", classN: "someClassName"}; // "label" is inserted into text field when user selects it.
});
return responseArray;
}
}}