jquery-selectorator
jquery-selectorator copied to clipboard
jQuery plugin that returns simplest selector of elements.
jQuery Selectorator
jQuery plugin that returns simplest selector of elements.
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/)