vote up 0 vote down star

Dear all, I have jquery that, i have called an ajax function file.php , that has some fields like Milk , Will I assign into again JQuery function, If so how to do It?.I attached the sample file

<html>
<head>
<LINK REL=StyleSheet HREF="examples.css" TITLE="Contemporary" TYPE="text/css">
<script src="jquery-1.2.6.js" type="text/javascript"></script>
<script src="jquery-impromptu.1.6.js" type="text/javascript"></script>
<script>

$(document).ready(function(){

$.ajax({
     type:"GET",
     url:"file.php",
     data:id,
     success:function(){
       var txt=id;        
       $.prompt( txt,{ opacity: 0.2 });
    },
     error:function(){
     window.location("ERRoR");
    } 
 });
});
</script>
<body>
</body>
</html>
flag

78% accept rate

2 Answers

vote up 4 vote down check

The success function takes a parameter, which contains the fetched data. So in your example:

$(document).ready(
    function(){ $.ajax({ 
       type:"GET", 
       url:"file.php", 
       data:id, 
       success:function(txt){ 
          $.prompt( txt,{ opacity: 0.2 }); 
       }, 
       // ... more ...
    }
});

More examples in the Jquery docs

link|flag
vote up -1 vote down

try this code , and not $.ajax, $.ajax is more global function.

$.get(url,requestData,function(data){
//callback function
alert(data);
});
link|flag
There's nothing 'more global' about $.ajax, $.get is simply a wrapper around $.ajax. – thenduks Oct 9 at 17:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.