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
Post a Comment