My problem: I have a page, index.php, that dynamically loads some html contents, from admin_agent_area.php, into some divs (#adminarea) in index.php. This happens when clicking the link "#adduser" and a jquery function is handling the loading and inserting. Now, in admin_agent_area.php. I have some other divs (#usertable) that is loaded with a table when the admin_agent_area.php has been loaded.
id=#adduser is a link (< a >) in index.php, outside "adminarea".
When clicking in the table an alert is presented.
The link #adduser is still visible after content has been loaded. When pressing it again the admin_agent_area.php is once again loaded and the table as well. Clicking inside the table now presents the alert two times after each other. This is bad, it should be only one time. I can see in Firebug that things are indeed happening twice when I want it to happen only once.
I have had similar problem and solved it by using .empty before loading the content. But when doing that, everything was on the same side.
index.php part of structure
< a id="adduser"> Add user < /a>
< div id = "adminarea">< /div>
admin_agent_area.php part of structure
< div id="modalarea">< /div>
< div id="usertable">< /div>
admin_agent_area.php My javascript loaded with index.php
$(document).ready(function() {
$("#adduser").click(function () {
$("#adminarea").empty();
$("#adminarea").load("http://localhost/SMICAdmin/adminactivities/admin_agent_area.php", function(data) { });
});
});
All content from admin_agent_area.php is loaded into div #adminarea in index.php. I thought that making sure i .empty it before loading the new content would, so to speak, reset entire #adminarea, like if I never had loaded anything before.
This is the javascript loaded together with admin_agent_area.php. When clicking a row in the table, this script is triggered:
$("table[id$='agents'] td:nth-child(1)").live('click',function(event)
{
$("#usertable").empty();
alert("loadupdatagent");
event.preventDefault();
var $td= $(this).closest('tr').children('td');
var $agentid=$td.eq(2).text();
$.get("http://localhost/SMICAdmin/adminactivities/admin_update_agent.php", { agent_id: $agentid }, function(data){
$("#modalarea").empty();
$("#modalarea").html(data);
$('#modalarea').css("visibility","visible");
});
And as you can see, this is the script where the alert is.
id=#modalarea is the area where some content is supposed to be loaded once the table row has been clicked. It shouldn't matter for the problem itself, but I can see in Firebug that the .get request is made twice as well.
How do I fix this problem? I don't think the HTML code should be needed, please let me know and I will add it as well.