Socket
Socket
Sign inDemoInstall

jquery-ujs

Package Overview
Dependencies
1
Maintainers
2
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    jquery-ujs

Ruby on Rails unobtrusive scripting adapter for jQuery, for npm


Version published
Weekly downloads
167K
decreased by-4.99%
Maintainers
2
Install size
1.44 MB
Created
Weekly downloads
 

Readme

Source

Notes on the npm supporting fork

We forked from the official version at https://github.com/rails/jquery-ujs to support npm.

  • Reasons: rails/jquery-ujs/issues/423 and rails/jquery-ujs/pull/380
  • We'll do our best to keep the npm version consistent with the version used by jquery-ujs.
  • There should be 2 files that differ: Addition of a package.json and changes ONLY to the top of the README.md
  • For advice on how to use the npm version with Rails and Webpack, see shakacode/react-webpack-rails-tutorial/pull/88 and forum article on considerations for jquery with Rails and webpack.
  • Publishing to npm:
   git pull https://github.com/rails/jquery-ujs.git master
   vim package.json # updating version number
   git commit -am 'the version number'
   git push --follow-tags origin master
   npm publish

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 .

FAQs

Last updated on 12 Sep 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc