Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>jQuery UI has a standard naming convention, <a href="http://docs.jquery.com/UI" rel="nofollow noreferrer">you can view a full list of widgets/effects here</a>. Comparing to that list you're looking for the corresponding methods mostly:</p> <ul> <li><a href="http://docs.jquery.com/UI/Draggable" rel="nofollow noreferrer"><code>.draggable()</code></a></li> <li><a href="http://docs.jquery.com/UI/Droppable" rel="nofollow noreferrer"><code>.droppable()</code></a></li> <li><a href="http://docs.jquery.com/UI/Dialog" rel="nofollow noreferrer"><code>.dialog()</code></a></li> <li>etc...</li> </ul> <p><strong>However</strong>, and this is a big however, if your main goal is to reduce page payload size, this <em>should</em> <strong>have no effect</strong>. Your users shouldn't be downloading this every page load, <a href="http://code.google.com/speed/page-speed/docs/caching.html" rel="nofollow noreferrer">it should be cached on the client as determined by cache headers</a>, additionally <a href="http://code.google.com/speed/page-speed/docs/payload.html" rel="nofollow noreferrer">your scripts should be minified (already provided version when you download it) and delivered gzipped</a>.</p> <p>Also if it's an option, I'd consider <a href="https://stackoverflow.com/questions/2746075/whats-faster-for-including-scripts-using-cdn-google-or-store-them-locally-in-w">using a CDN for both jQuery and jQuery UI</a>, and <a href="https://stackoverflow.com/questions/820412/jquery-css-download-from-google">the stylesheets as well</a>, if you're using one of the default themes.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload