jquery-selectorator

0.1.6 • Public • Published

jQuery Selectorator

jQuery plugin that returns simplest selector of elements.

Build Status

Getting Started

<script src="jquery.js"></script>
<script src="dist/selectorator.min.js"></script>

Documentation

jQuery.fn.getSelector(options = {})

Returns an array of simplest selectors of the element.

jQuery.fn.selectorator(options = {})

Returns Selectorator instance.

jQuery.seletortor.options = []

Default options.

options.ignore.classes = []

options.ignore.names = []

options.ignore.ids = []

options.ignore.class = ''

options.ignore.name = ''

options.ignore.id = ''

String or Array of values to ignore from generated selectors.

Examples

$("a").on("click", function(){
  alert($(this).getSelector().join("\n"));
  return false;
});

Testing

$ npm install
$ npm test

Author

  • Atsushi Nagase (http://ngs.io/)

License

MIT License

Readme

Keywords

Package Sidebar

Install

npm i jquery-selectorator

Weekly Downloads

9

Version

0.1.6

License

none

Last publish

Collaborators

  • ngs