Jump To - Create a smooth jump to sub navigational menu

Jump To is a plugin that let you create a jump to sub navigational menu automatically with 1 line of JS call. The menu can be used to assist your navigation for pages with a lot of content.  

Pace - An automatic web page progress bar

Pace automatically adds a progress bar to your site. It will monitor your Ajax requests, event loop lag, document ready state and elements on your page to decide on the progress.  

Bootstrap-WYSIWYG - Tiny bootstrap-compatible WYSIWYG rich text editor

Bootstrap-WYSIWYG is a tiny bootstrap-compatible WYSIWYG rich text editor.   Bootstrap-WYSIWYG - Features: Automatically binds standard hotkeys for common operations on Mac and Windows Drag and drop files to insert images, support image upload (also taking photos on mobile devices) Allows a custom built toolbar, no magic markup generators, enabling the web site to use all the goodness of Bootstrap, Font Awesome and so on... Does not force any styling - it's all up to you Uses standard bro

UI Element States Pseudo-Class - :checked

Pattern: :checked   Definition: The :checked pseudo-class matches radio and checkbox elements that have been toggled on (checked or filled).   Examples: Style all checked <input> elements input:checked { width: 50px; }

UI Element States Pseudo-Class - :disabled

Pattern: :disabled   Definition: The :disabled pseudo-class matches user interface elements that are in a disabled state (not able to accept user input).   Examples: Style all <input> elements that are in a disabled state. input:disabled { background-color: sienna; }

UI Element States Pseudo-Class - :enabled

Pattern: :enabled   Definition: The :enabled pseudo-class matches user interface elements that are in an enabled state (mostly used on form elements in (X)HTML).   Examples: Style all <input> elements that are in an enabled state. input:enabled { background-color: salmon; }

Language Pseudo-Class - :lang

Pattern: :lang   Definition: The :lang pseudo-class matches the elements based on their human-language information.   Examples: Style every <h1> element that has the en language (including "en-*") information. h1:lang(en) { background-color: lightpink; }

Target Pseudo-Class - :target

Pattern: :target   Definition: The :target pseudo-class matches the target element. (A target element is an URI refers to a location within the document. It ends with a "number sign" (#) followed by an anchor identifier.).   Examples: Style an <h2> element that is the target element of the referring URI. h2:target { border: 2px dashed burlywood; }

User Action Pseudo-Class - :focus

Pattern: :focus   Definition: The :focus pseudo-class matches the element that has the focus (E.g., when an input field has the text-input cursor within it).   Examples: Style an input field when it has the focus input:focus { border: 2px dashed thistle; }

User Action Pseudo-Class - :active

Pattern: :active   Definition: The :active pseudo-class matches any element that is being activated (E.g., when clicking on it) by the user.   Examples: Style any element when it is being activated *:active { background-color: wheat; }