Guest User

Untitled

a guest
Sep 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. jQuery(function(){
  2. $.ajax({
  3. async:true,
  4. type:'get',
  5. beforeSend:function(request) {
  6. $.blockUI({ css: {
  7. border: 'none',
  8. padding: '15px',
  9. backgroundColor: '#000',
  10. '-webkit-border-radius': '10px',
  11. '-moz-border-radius': '10px',
  12. opacity: .5,
  13. color: '#fff'
  14. }});
  15. },
  16. complete:function(request, json) {
  17.  
  18. },
  19. url: url,
  20. dataType: 'json',
  21. success: function(data){
  22. $.unblockUI()
  23. }
  24. })
  25. });
Add Comment
Please, Sign In to add comment