$(".smt-panel-primary_in").click(function () {
$(".smt-panel-primary_in").children().each(function(i,e,v){
$(e).hide();
})
});
$(".smt-panel-primary_in").click(function () {
$(this).children().each(function(i,e,v){
$(e).hide();
})
});
xhr.setRequestHeader('Content-type', 'application/json; charset=utf-8');
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded')
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=utf-8')
setInterval(myF(), 300);
function myF(){
// return $('#demo2').text();
// var a = $('#demo2').text();
// return $('#demo2').html();
// var a = $('#demo2').html();
}
jQuery("ELEMENT").bind( 'DOMSubtreeModified',function(){ // отслеживаем изменение содержимого
//Some function
});
$.fn.visible = function() {
return this.css('visibility', 'visible');
};
$.fn.invisible = function() {
return this.css('visibility', 'hidden');
};
$('Element').click(function(){
$(this).visible(); or $(this).invisible();
});