$.ajax('http://.../', {dataType: 'html'}).done(function(data) {
var logo = $('<div>').append(data).find('#logo');
console.log(logo.get(0));
});
share_theme_counter
, в доке не описано. (function($) {
$.fn.dropdown = function(options) {
if (this.length > 1) {
return this;
}
// Устанавливаем стандартные значения
options = $.extend({/* defaults */}, options);
var $tree = this;
$(document)
.on('click', function() {
// Прячем дерево $tree
});
$tree
.on('click', '.item', function(e) {
e.stopPropagation();
e.preventDefault();
// Показываем дочернее дерево
});
}
})(jQuery);
var sendStat = function() {
$.ajax({
url: "stat.php",
}).always(function() {
setTimeout(sendStat, 3000);
});
};
sendStat();