zaytsewa,
Контент данного скрипта
$(document).ready(function(){
$("#add_btn").click(function(){
//var v = $(document.createElement("div"));
var v = $(document.createElement("iframe"));
var id = Math.random()*1001;
v.attr("src","form1.html?id="+id);
v.attr("id", id);
//alert(v.attr("id"));
//v.load("form1.html");
$("#frames_div").append( v );
//alert("addButton");
});
$(window).load(function() {
//var v = $(document.createElement("div"));
//v.load("form1.html");
var v = $(document.createElement("iframe"));
v.attr("src","form1.html");
$("#frames_div").append( v );
});
/*
function close_form( close_btn )
{
var v = $(close_btn).parent();
v.remove();
}
function minimize( hide_btn )
{
var v = $(close_btn).parent();
var isHidden = ( $( "tr:eq(1)").css("display") == 'none');
for ( i = 1; i < 3; ++i )
{
if ( !isHidden )
v.find($("tr:eq("+i+")")).css('display','none');
else
v.find($("tr:eq("+i+")")).css('display','');
}
if ( !isHidden )
$(hide_btn).text('[ ]');
else
$(hide_btn).text('-')
}*/
});
замените на этот
function Lload(a){
//Удаление фрейма
$(a).contents().find("body #close_btn").click(function(){
$(a).parent('.div_wrap').remove();
});
//Скрытие фрейма
$(a).contents().find("body #hide_btn").click(function(){
//$(a).wrap("<div class=div_wrap></div>");
$(a).addClass("HideIframe").hide();
$(a).parent().append('<button class="show_btn">show</button>');
});
//Раскрытие скрытого фрейма
$("button.show_btn").live("click",function(){
$(this).parent().find('.HideIframe').show().removeClass('HideIframe');
$(this).remove();
});
};
$(document).ready(function(){
$("#add_btn").click(function(){
var v = $(document.createElement("iframe"));
v.attr("onload","Lload(this)");
var id = Math.random()*1001;
v.attr("src","form1.html?id="+id);
v.attr("id", id);
$("#frames_div").append( v );
v.wrap("<div class=div_wrap></div>");
});
$(window).load(function() {
$("#add_btn").click();
});
});
================================
И добавьте кусок стиля на главную
<style>
div.div_wrap{
border:red solid 1px;
//float:left;
display:inline-block;
}
</style>