Skip to content

Instantly share code, notes, and snippets.

View gaspan's full-sized avatar
🎯
Focusing

Gentur Ariyadi gaspan

🎯
Focusing
  • Ciamis
View GitHub Profile
@gaspan
gaspan / jquery_laravel_jsonp_example.md
Created March 23, 2021 07:41 — forked from rjvdw/jquery_laravel_jsonp_example.md
JSONP Example With jQuery And Laravel

JSONP Example With jQuery And Laravel

javascript

$.ajax({ url: '/my-pretty-url', dataType: 'jsonP' })
  .done(function (data, textStatus, jqXHR) {
    console.log(data)
  })
  .fail(function (jqXHR, textStatus, err) {
 throw(err)