Контакты
email:
skype:
© 2008 – 2021
Вернуться
» » » reqwest - js плагин для создание асинхронных ajax запросов

reqwest - js плагин для создание асинхронных ajax запросов


reqwest('path/to/html', function (resp) {
  qwery('#content').html(resp)
})

reqwest({
    url: 'path/to/html'
  , method: 'post'
  , data: { foo: 'bar', baz: 100 }
  , success: function (resp) {
      qwery('#content').html(resp)
    }
})

https://github.com/ded/Reqwest
Оставить комментарий
Вверх