Jump to content

need help targeting the right varibles?


sylvestweb

Recommended Posts

Hi can anybody help me , what am i doing wrong here?

 

this one works 

/////////////////////////////////////////

$(document).ready(function(){
$('#data').load('files/organisationer/inc/oprettetCases.inc.php');
 
$(".loading").hide();
});
function ajax_loader(x) {
    req = $.ajax({
        type: "GET",
        url: "files/organisationer/inc/oprettetCases.inc.php?pn=" + x,
       datatype: "html",
        success: function(data){
            $('#data').html(data).fadeIn('slow');
        }
 
    });
 
 
} and i got a <div  id="data"></div>

 

//////////////////////////////////////////////////////////////////

but now the problem is im trying to do the same thing on another page , but i changed the div to #dataIndex, it loads the page fine but the function(x) is not calling #dataIndex.
//////////////////////////////////////////////////////////////////
       PROBLEM!!!!!!!!
$(document).ready(function(){
$('#dataIndex').load('inc/oprettet_cases.inc.php');
 
$(".loadingIndex").hide();
 
function ajax_loader2(x) {
    req2 = $.ajax({
        type: "GET",
        url: "inc/oprettet_cases.inc.php?pn=" + x,
       datatype: "html",
        success: function(data){
            $('#dataIndex').html(data);
        }
 
    });
 
 
}
});
 
and here is the div :
 
<div id="dataIndex"></div>
/////////////////////////////////////////////////////////////////////////////////////////
 
any idears what im doing wrong????
 
Thanks.
 
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.