Outline Border Checkbox in jQuery


<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-1.4.4.min.js'></script>
<script type='text/javascript'>
$(window).load(function(){
    $(function(){
        $('#chk').css('outline-color', 'black');
        $('#chk').css('outline-style', 'solid');
        $('#chk').css('outline-width', 'thick');
    });
});
</script>
</head>
<body>
  <input type="checkbox" id="chk" />
</body>
</html>

Comments

Popular posts from this blog

Shutdown Computer With Funny Reason

Hidden Attribute in javascript

Draw animated loading spinner canvas in Javascript