Lateworm
10/22/2017 - 3:28 AM

jQuery Snippets

jQuery Snippets

// .on() events
// ex .on('change', function() {});
// focus, blur, change, input, keydown, keyup, keypress, click, dblclick, mouseup, mousedown, mouseover, mousemove, mouseout, hover, submit, select, ready, load, unload, error, resize, scroll

/* JQUERY ATTRIBUTE SELECTORS
= is exactly equal
!= is not equal
^= is starts with
$= is ends with
*= is contains
~= is contains word
|= is starts with prefix (i.e., |= "prefix" matches "prefix-...")
*/

// Fix "Skip Link" Focus in Webkit
$(function() {
   $("a[href^='#']").not("a[href='#']").click(function() {
      $("#"+$(this).attr("href").slice(1)+"").focus();
   });
});