<label>
< a href = "what ever link"
<input type =.............button pptys/>
</a></label>
Main Topics
Browse All TopicsThe attached code works so long as Javascript is enabled in Microsoft Internet Explorer,
It works in Firefox, Chrome or Safari with javascript on or off.
I want to have something that works in IE when Javascript is disabled.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I have thought of perhaps using a background image over the element or an actual image
say
<a href="/"><img src=button.png></a>
but that means I need to design some button graphics for each different button I need.
The other thing I considered was using CSS to create shading with a border or something to make it look a bit more like a button, but I have had difficulty getting this to work due to my lack of CSS experience.
Hope this solves your problem :)
<html xmlns="http://www.w3.org/1
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.DivButton {
font-family: verdana;
font-size: 11px;
width:60px;
font-weight: bold;
color: #666666;
text-align:center;
background-color: #CCCCCC;
padding: 5px;
border: 1px solid #333333;
}
.DivButton a {
color: #666666;
text-decoration:none;
}
.DivButton a:hover{
text-decoration:none;
color:#000000;
}
-->
</style>
</head>
<body>
<div class="DivButton"><a href="#">Button</a></div>
</body>
</html>
Maybe I'm not understanding correctly, but it should be as simple as using CSS with the "a:focus" pseudo-class. http://www.w3schools.com/C
a.class {
display: block;
width: xxx;
height: xxx;
background: url(image of your button);
}
a.class:focus {
display: block;
width: xxx;
height: xxx;
background: url(image of your alternate button state: onclick);
}
You can also use :hover and :selected for more effect.
Business Accounts
Answer for Membership
by: isaackhaziPosted on 2009-02-03 at 23:00:27ID: 23545526
< a href = "what ever link"
<input type =.............button pptys/>
</a>