JQuery and Nokia :)
Posted
by Radhika
on Stack Overflow
See other posts from Stack Overflow
or by Radhika
Published on 2010-03-31T18:10:19Z
Indexed on
2010/03/31
18:13 UTC
Read the original article
Hit count: 405
Hi I was trying to mobilise my website and I ran into an issue with Jquery. When I was trying to perform a jquery call (.$ajax) it was not getting rendered. This is the part of the code
var returnData = '';
$.ajax({url: './indexSubmit.php',
async: false,
dataType: 'json',
data:{flag:'vehicleInfo',
vehicleId:xVehicleId},
success: function(data,textStatus){
if(textStatus != 'success'){
alert('Error: '+ textStatus);
return;
}
returnData = data;
I am not sure, but I guess I need to install jquery in the browser. If yes, can I automatically download and install jquery in the browser using some javascript?
© Stack Overflow or respective owner