sylvestweb Posted September 11, 2014 Share Posted September 11, 2014 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. Quote Link to comment https://forums.phpfreaks.com/topic/290995-need-help-targeting-the-right-varibles/ Share on other sites More sharing options...
CroNiX Posted September 11, 2014 Share Posted September 11, 2014 Is the js console showing the ajax request firing? Are you sure that data is being returned in the success event? Quote Link to comment https://forums.phpfreaks.com/topic/290995-need-help-targeting-the-right-varibles/#findComment-1490757 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.