I should also mention, that the images are loaded into:
<div id='listoflists'></div>

in case that affects anything....

So, when the page loads:
$(document).ready(function(){
        listLoad();
        $("#do_create_list").click(function(){
                
$("#create_list_results").load("/cart/admin/files/mailinglist.html",
{nodetails:"yes",listname:$('.listname').val
(),action:"create_list"},setTimeout(listLoad(),400));
        });
        function listLoad() {
                $("#listoflists").load("/cart/admin/files/mailinglist.html",
{nodetails: "yes",action:"loadlists"});
        }
});

page:
<div id='new_list_create' style='display: none; text-align: right;'>
        Enter a List Name to create: <input type=text name='listname'
size='40' maxlength='40' class='listname'> <input type=submit
value='Create List' id='do_create_list'>
</div>
<div id='listoflists'></div>

Reply via email to