Skip to content

Instantly share code, notes, and snippets.

@liketaurus
Last active December 18, 2015 09:40
Show Gist options
  • Save liketaurus/a0d8d630736961fc628a to your computer and use it in GitHub Desktop.
Save liketaurus/a0d8d630736961fc628a to your computer and use it in GitHub Desktop.
How to add draggable analog clock widget with jQuery and clocktag.com
<div id="clockW">
<iframe id="clockobj" style="border:0;margin:0;padding:0;width:100px;height:100px;"
src="http://www.clocktag.com/html5/m121.html"></iframe>
<center><p>...</p></center>
</div>
...
<script>
...
$('#clockW').css({left:$(window).width()-150,top:100});
$('#clockW').draggable();
...
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment