Skip to content

Instantly share code, notes, and snippets.

@psayre23
Forked from jfirebaugh/vml_sizzle.html
Created July 14, 2010 21:48
Show Gist options
  • Save psayre23/2b7abeffc4573accc994 to your computer and use it in GitHub Desktop.
Save psayre23/2b7abeffc4573accc994 to your computer and use it in GitHub Desktop.
<html>
<head>
<style>v\: * { behavior:url(#default#VML); display:inline-block }</style>
<xml:namespace ns="urn:schemas-microsoft-com:vml" prefix="v" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$(':enabled');
$(':disabled');
$(':checked');
$(':selected');
$(':text');
$(':radio');
$(':checkbox');
$(':file');
$(':password');
$(':submit');
$(':image');
$(':reset');
$(':button');
$('.class');
$('[name=name]');
$('*');
$('[style]');
$(document.getElementById('oval'));
});
</script>
</head>
<body>
<v:oval id="oval" style="width:100pt;height:75pt;" fillcolor="red"> </v:oval>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment