promotion-tools.js 583 B

12345678910111213141516171819202122232425
  1. $(document).ready(function(){
  2. var link = $("input[name=linkGetPromotionTools]").val();
  3. $.ajaxSetup({
  4. headers: {
  5. 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
  6. }
  7. });
  8. $.ajax({
  9. url: link,
  10. type: 'post',
  11. data: {
  12. linkCurrent: window.location.href ,
  13. windowWidth: screen.width,
  14. windowHeight: screen.height
  15. },
  16. success: function(result){
  17. if(result != 0){
  18. $('body').append(result);
  19. }
  20. }
  21. });
  22. });