JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://getfirebug.com/firebug-lite.js"></script>
<script src="http://213.20.244.18/jquery-1.4.4.js"></script>
<input class="watermark" title="" />
<input type="checkbox" />
<a class="notrackcheck"><!-- --></a>
JavaScript
jQuery(document).ready(function(){
var $scope = jQuery(document);
//init tracking of forms
jQuery('a', $scope).not('a.trainingChangeDay,a.tablink,a.notrackcheck', $scope).each(function() {
console.log('a');
});
// init watermark input fields
jQuery('.watermark[title=""]', $scope).each(function() {
console.log('watermark');
});
jQuery('input:checkbox.cbHideElement', $scope).each(function() {
console.log('cbHideElement');
});
console.log('All selectors: ');
console.log(selectors);
console.log('elements that are passed to Sizzle.filter: ' + prematchcounter);
console.log(prematchelements);
console.log('elements that are matched in Sizzle.filter: ');
console.log(counter);
console.log(elements);
});