I have implemented a Jquery ajax call in my Dot Net Application, it is working fine in development environment it is giving json response and it works as expected, but when i move this to staging environment somehow it is not working, i did the debugging in code using firebug in firefox and found, instead of JSON in response it is returning some HTML which has already rendered on page. In dev server it is executing the next statement written after the success statement, but in staging it is not at executing the next statement.
In our application, we have two functionalists : 1. Auto suggest feature (uses 1.4.2) 2. UL,LI flyover feature.(uses 1.4.4)
now the problem is that, auto suggest is working fine but it is breaking flyover feature. if i remove the 1.4.2 reference then Auto suggest is breaking and flyover works fine.
I need both the features but 1.4.2 is causing the issue for flyover. so is there any way by which i can use the 1.4.4 instead of 1.4.2 for making auto suggest feature working.
that means there is cross dependance of jquery references.
i am new to jquery pls suggest how to resolve this.