Есть открытие div при нажатии ссылки, а как сделать чтобы сразу отображалось содержимое div на странице? Исходники: ____________________ Страница отображения : <html><head><title>Подгрузка нужного контента других страниц</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="Content-Language" content="ru"><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script> <script>$(document).ready(function(){ ;(function($) { $.lebnikLoad = function(selector, url, callback){ $(document.body).lebnikLoad(selector, url, callback, true); }; $.fn.lebnikLoad = function(selector, url, callback, without_selector_document){ var selector_document = this; var e = $('<iframe style="display:none" src="'+url+'"></iframe>'); $(document.body).append( e ); $(e).load(function(){ var x = $(selector, e[0].contentWindow.document); if(callback){ callback(x); }else if(without_selector_document != true){ $(selector_document).html( $(x).html() ); } }); };})(jQuery);});</script> </head><body> <a href="#content_from2" onclick="$('#videobox').html('Загрузка...').lebnikLoad('#content_from1', 'http:/домен/page.html'); return false;">Открыть</a> <div id="videobox"></div> </body></html>___________________Страница от куда загружается контент:<html><head><title>Отображение в div</title><META HTTP-EQUIV=”Content-Type” content="text/html; charset=windows-1251"><meta http-equiv="Content-Language" content="ru"></head><body> <div id="content_from1"> Цена: уточняйте </div> </body></html>