Контакты
email:
skype:
© 2008 – 2021

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

Signature Pad - html5 canvas блок создания подписи


Signature Pad - html5 canvas блок создания подписи

https://github.com/szimek/signature_pad

js-cookie - js api для работы с куками браузера


Cookies.get('name'); // => 'value'
Cookies.set('name', 'value', { path: '' });
Cookies.remove('name', { path: '' }); // removed!

https://github.com/js-cookie/js-cookie

keymaster - микро js библиотека навешивания горячих клавиш


// define short of 'a'
key('a', function(){ alert('you pressed a!') });

// returning false stops the event and prevents default browser events
key('ctrl+r', function(){ alert('stopped reload!'); return false });

// multiple shortcuts that do the same thing
key('?+r, ctrl+r', function(){ });

https://github.com/madrobby/keymaster

drift - бесплатная замена cloudzoom, скрипт лупы


drift - бесплатная замена cloudzoom, скрипт лупы

https://github.com/imgix/drift

Видео: Проектирование каталога интернет-магазина


« »
Вверх