Advertisement
Guest User

Untitled

a guest
Nov 20th, 2012
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. <?php
  2. session_start();
  3. include 'connect_to_mysql.php';
  4. ?>
  5.  
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  7. <html xmlns="http://www.w3.org/1999/xhtml">
  8. <head>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  10. <title>index</title>
  11.  
  12. <script type="text/javascript" src="js_scripts/jquery.js"></script>
  13.  
  14. <script src="js_scripts/jquery-1.7.1.min.js"></script>
  15.  
  16. <script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
  17. <script type="text/javascript" src="http://code.jquery.com/ui/1.8.18/jquery-ui.min.js"></script>
  18.  
  19. <script>
  20. $(document).ready(function (){
  21.  
  22. $(".add_detail_land_down").click(function(){
  23.  
  24. var hidden_count = $('input[name=addon_detail_hidden_count]').val();
  25.  
  26. $.ajax({
  27. type: "GET",
  28. url: "addon_detail_calc.php",
  29. data: { hidden_count: hidden_count },
  30. dataType: "json",
  31. success: function (data) {
  32. $("#total_hidden_count").html(data.total_hidden);
  33. $("#output").html(data.output);
  34. }
  35. });
  36. return false;
  37. })
  38. $(".add_detail_land_down").click();
  39. });
  40. </script>
  41.  
  42. </head>
  43. <body>
  44. <div id="wrapper">
  45.  
  46.  
  47. <form action="" method="post">
  48.  
  49. <div id="output"><input type="hidden" name="addon_detail_hidden_count" id="addon_detail_hidden_count" class="addon_detail_hidden_count" value="1" /></div>
  50.  
  51.  
  52. <input name="add_detail_land_down" type="submit" class="add_detail_land_down" value="add_detail_down"/>
  53. <div id="total_hidden_count" class="add_detail_result_wrap">-</div><!---end add_detail_result_wrap--->
  54.  
  55. </form>
  56. </div><!---end wrapper--->
  57. </body>
  58. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement