Side navigation
Ticket #4146: test-4146.html
File test-4146.html, 0.6 KB (added by dmethvin, February 14, 2009 04:03AM UTC)
bizarro buttons width
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Test</title>
<style type="text/css">
</style>
<script type="text/javascript" src="jquery-1.3.1.js"></script>
<script type="text/javascript">
$(function(){
$("#stat1").text($("#x1").width());
$("#x1").width($("#x1").width())
$("#stat2").text($("button").width());
});
</script>
</head>
<body>
<button id="x1" style="width: 80px; padding:10px; border: 5px solid #800">test</button>
<button id="x2" style="width: 80px; padding:10px; border: 5px solid #800">test</button>
<div id="stat1"></div>
<div id="stat2"></div>
</body>
</html>
Download in other formats:
Original Format
File test-4146.html, 0.6 KB (added by dmethvin, February 14, 2009 04:03AM UTC)
bizarro buttons width
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Test</title>
<style type="text/css">
</style>
<script type="text/javascript" src="jquery-1.3.1.js"></script>
<script type="text/javascript">
$(function(){
$("#stat1").text($("#x1").width());
$("#x1").width($("#x1").width())
$("#stat2").text($("button").width());
});
</script>
</head>
<body>
<button id="x1" style="width: 80px; padding:10px; border: 5px solid #800">test</button>
<button id="x2" style="width: 80px; padding:10px; border: 5px solid #800">test</button>
<div id="stat1"></div>
<div id="stat2"></div>
</body>
</html>