JSFiddle

Frank's public fiddles

  • t8gfnmvz

    jQuery 3.3.1, HTML, CSS, JavaScript

  • CSS Slider Switch

    Slider on/off switch using CSS.

  • CSS Slider Switch

    Slider on/off switch using CSS.

  • auqdk6hf

    No-Library (pure JS), HTML, CSS, JavaScript

  • nmgbfpdw

    No-Library (pure JS), HTML, CSS, JavaScript

  • Lhx3njvz

    No-Library (pure JS), HTML, CSS, JavaScript

  • r9qua4s6

    No-Library (pure JS), HTML, CSS, JavaScript

  • 1p5u2cdk

    No-Library (pure JS), HTML, CSS, JavaScript

  • zk50porh

    No-Library (pure JS), HTML, CSS, JavaScript

  • findIndex

    jQuery (edge), HTML, CSS, JavaScript

  • JSGrid Hidden filtering row

    jQuery Compat (edge), HTML, CSS, JavaScript

  • jQuery.on() sample

    http://api.jquery.com/on/ "Delegated events have the advantage that they can process events from descendant elements that are added to the document at a later time. By picking an element that is guaranteed to be present at the time the delegated event handler is attached, you can use delegated events to avoid the need to frequently attach and remove event handlers. This element could be the container element of a view in a Model-View-Controller design, for example, or document if the event handler wants to monitor all bubbling events in the document. The document element is available in the head of the document before loading any other HTML, so it is safe to attach events there without waiting for the document to be ready. In addition to their ability to handle events on descendant elements not yet created, another advantage of delegated events is their potential for much lower overhead when many elements must be monitored. On a data table with 1,000 rows in its tbody, this example attaches a handler to 1,000 elements: $( "#dataTable tbody tr" ).on( "click", function() { alert( $( this ).text() ); }); A delegated-events approach attaches an event handler to only one element, the tbody, and the event only needs to bubble up one level (from the clicked tr to tbody): $( "#dataTable tbody" ).on( "click", "tr", function() { alert( $( this ).text() ); }); Attaching many delegated event handlers near the top of the document tree can degrade performance. Each time the event occurs, jQuery must compare all selectors of all attached events of that type to every element in the path from the event target up to the top of the document. For best performance, attach delegated events at a document location as close as possible to the target elements. Avoid excessive use of document or document.body for delegated events on large documents. jQuery can process simple selectors of the form tag#id.class very quickly when they are used to filter delegated events. So, "#myForm", "a.external", and "button" are all fast selectors. Delegated events that use more complex selectors, particularly hierarchical ones, can be several times slower--although they are still fast enough for most applications. Hierarchical selectors can often be avoided simply by attaching the handler to a more appropriate point in the document. For example, instead of $( "body" ).on( "click", "#commentForm .addNew", addComment ) use $( "#commentForm" ).on( "click", ".addNew", addComment ).

  • JQuery Click Event

    JQuery Click Event

  • Demo of ES6 arrow functions

    // Fat arrows change how `this` is handled. // ES6 Arrows bind `this` to the immediate enclosing lexical scope // I.e. the value of `this` inside an arrow function is the same as the value of `this` in the arrow’s enclosing function

  • Close Jquery UI dialog

    Click anywhere outside the dialog on the overlay to close the dialog.

  • Select dropdown

    Mootools 1.4.5, HTML, CSS, JavaScript

  • tk5619L8

    No-Library (pure JS), HTML, CSS, JavaScript

  • pn6308w9

    No-Library (pure JS), HTML, CSS, JavaScript

  • 8qkw21nm

    jQuery 3.3.1, HTML, CSS, JavaScript

  • p4fx9arw

    No-Library (pure JS), HTML, CSS, JavaScript