Then I'd say you ought to try making the load the callback of the post
and see if that works, something along the lines of:
$("#TOAppr").live("click", function() {
$.post("webapps/hr/admin/actions/act_adminHR_handler.cfm", {
desc: $(this).attr('desc'
ooglegroups.com
Subject: Re: [jQuery] Another "Why doesn't this work in IE"
Is it okay if the load happens immediately after the data is posted?
Or will it be loading something based on the DB actions having been
successful completed? As it is it's not waiting for the post to
complete before issuing the load.
Nathan
Is it okay if the load happens immediately after the data is posted?
Or will it be loading something based on the DB actions having been
successful completed? As it is it's not waiting for the post to
complete before issuing the load.
Nathan
$("#TOAppr").live("click", function(){
$.post("webapps/hr/admin/actions/act_adminHR_handler.cfm",
{
desc: $(this).attr('desc'),
pk: $(this).attr('pk')
});
$("#content-box").load("webapps/hr/admin/display/dsp_
4 matches
Mail list logo