Not working
http://docs.jquery.com/UI/Magnifier


Bad example
http://docs.jquery.com/Post


God Example

jQuery loading another page and alerting the result:

 $.post("receive_variables.php",
       {first_name:"Tarcila",last_name:"Broder"},
       function(returned_data)
         {
         alert(data);
         });


receive_variables.php

 <?php
 echo 'Welcome '.$_POST['first_name'].' '.$_POST['last_name'];
 ?>

OUTPUT:

 Browser will alert, with it's standard pop-up box 'Welcome Tarcila
Broder'


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery Development" group.
To post to this group, send email to jquery-dev@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to