Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <script>
  2. function detailsmodal(rental_id){
  3. var data = {"rental_id" : rental_id};
  4. jQuery.ajax({
  5. url : <?=BASEURL;?>+'includes/detailsmodal.php',
  6. method : "post",
  7. data : data,
  8. success: function(data){
  9. jQuery('body').append(data);
  10. jQuery('#quote').modal('toggle');
  11. },
  12. error: function(){
  13. alert("Something went wrong!");
  14. }
  15. });
  16. }
  17. </script>
  18.  
  19. jQuery('#quote').modal('show');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement