Click here to Skip to main content
Sign Up to vote bad
good
See more: AjaxjQuery
Hi all
 
Here index is a global variable. I am manipulating the index in another function.
 
After that I call this function. its showing the actual result outside and after the ajax call but not showing inside the ajax call.
var urlSearch = "http://192.168.10.113/collective-intellegence/UserClickPersonClassifier?userid=1&query=asp.net";
alert(index);
$.ajax({
    url: urlSearch,
    type: 'POST',
    dataType: 'json',
    success: function (data) {
        alert(index);
    }
});
Is there any mistake done by me.
 
Please help to solve this problem.
 
Thanks in advance.
Posted 14 Nov '12 - 3:04

Comments
Mathlab - 14 Nov '12 - 9:12
You might want to make sure that the event that changes index gets called before your ajax

1 solution

If it can't see a global, you could create a local copy as in, var i = index; and access i inside your AJAX callback. If it's not a weird scoping issue, then there's an issue with the code you've not shown us.
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 425
1 OriginalGriff 330
2 Arun Vasu 253
3 Zoltán Zörgő 194
4 CPallini 173
0 Sergey Alexandrovich Kryukov 10,105
1 OriginalGriff 7,739
2 CPallini 4,181
3 Rohan Leuva 3,482
4 Maciej Los 2,999


Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 14 Nov 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid