Skip to content
This repository was archived by the owner on Jan 5, 2021. It is now read-only.
/ jquery-ujs Public archive
forked from KODerFunk/jquery-ujs

Ruby on Rails unobtrusive scripting adapter for jQuery

License

Notifications You must be signed in to change notification settings

star-diopside/jquery-ujs

This branch is 6 commits ahead of KODerFunk/jquery-ujs:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

641b18c · Sep 3, 2015
Apr 4, 2014
Sep 3, 2015
Oct 30, 2014
Apr 4, 2014
Apr 4, 2014
Sep 8, 2014
Mar 2, 2014
Aug 7, 2014
Oct 25, 2010
Sep 10, 2014
Jan 7, 2011
Aug 27, 2014

Repository files navigation

Unobtrusive scripting adapter for jQuery

This unobtrusive scripting support file is developed for the Ruby on Rails framework, but is not strictly tied to any specific backend. You can drop this into any application to:

  • force confirmation dialogs for various actions;
  • make non-GET requests from hyperlinks;
  • make forms or hyperlinks submit data asynchronously with Ajax;
  • have submit buttons become automatically disabled on form submit to prevent double-clicking.

These features are achieved by adding certain "data" attributes to your HTML markup. In Rails, they are added by the framework's template helpers.

Full documentation is on the wiki, including the list of published Ajax events.

Requirements

If you don't use HTML5, adding "data" attributes to your HTML4 or XHTML pages might make them fail W3C markup validation. However, this shouldn't create any issues for web browsers or other user agents.

Installation using the jquery-rails gem

For automated installation in Rails, use the "jquery-rails" gem. Place this in your Gemfile:

gem 'jquery-rails'

And run:

$ bundle install

Require both jquery and jquery_ujs into your application.js manifest.

//= require jquery
//= require jquery_ujs

Installation using Bower

Run bower install jquery-ujs --save to install the jquery-ujs package.

Usage

Require both jquery and jquery-ujs into your application.js manifest.

//= require jquery
//= require jquery-ujs

How to run tests

Follow this wiki to run tests .

About

Ruby on Rails unobtrusive scripting adapter for jQuery

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 92.8%
  • Ruby 4.6%
  • HTML 1.9%
  • Shell 0.7%