JQuery UI: Difference between revisions

Content deleted Content added
No edit summary
m Task 70: Update syntaxhighlight tags - remove use of deprecated <source> tags
Line 67:
 
== Example ==
<sourcesyntaxhighlight lang="javascript">
// Make the element with id "draggable" draggable
$(function () {
$("#draggable").draggable();
});
</syntaxhighlight>
</source>
 
<sourcesyntaxhighlight lang="html5">
<div id="draggable">
<p>Drag me around</p>
</div>
</syntaxhighlight>
</source>
 
This makes the div with the ID "draggable" draggable by the user's mouse.