Hi,
some JQuery scripts in web page runs twice. What is all about ? Maybe somebody faced such problem ?
For example(code that gets total items number from DB and runs in $(document).ready(function(){}); ):
$.post("/index/getitemscount/", {} ,function(data){
$('#items_count_div').html(data);
}, 'text');
As I see in FireBug(Firefox plugin), code runs twice...
Your help would be appreciated.