|
Hiya,
Kind of need some problem solving technique for jquery execution script.
Code is below,
alert( inputString.value );
$.post("suggest.php", {queryString: ""+inputString.value+"",InputId:""+inputId+"",type :""+array[0]+""},[function(data){
alert(this.type == 'POST');
When I use jquery file pack 1.2 is gives error at $.post that "$ is not defined" and if I use online available script that is "http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"
it gives error s.success.call is not a function.
Please dont tell jquery file is not been loaded or the reference to the file is incorrect. Because its picking up the file and referencing is correct.
Any advice would be greatly welcomed.
Thanks and cheers.
|