Advertisement
Guest User

Untitled

a guest
Sep 25th, 2012
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <?php $count = 2; ?>
  2.  
  3. <p>Download's remaining: <span class="count"><?php echo $count; ?></span></p>
  4. <input type="submit" value="DL!" class="submit" />
  5. <br />
  6. IFRAME IS BELOW:<br />
  7.  
  8. <iframe id="dl"></iframe>
  9.  
  10. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
  11. <script type="text/javascript">
  12. $(document).ready(function(){
  13. $('.submit').click(function(){
  14. $.ajax({
  15. type: 'POST',
  16. url: 'processdl.php',
  17. data: 'dl=true',
  18. success: function(response) {
  19. console.log(response);
  20. // $("#dl").attr("src","processdl.php?dl=true");
  21. }
  22. });
  23.  
  24. });
  25. });
  26. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement