I have a <div> block with some fancy visual content that I don't want to change. I want to make it a clickable link.
I'm looking for something like <a href="…"><div> … </div></a>, but that is valid XHTML 1.1.
|
|
Came here in the hope of finding a better solution that mine, but I don't like any of the ones on offer here. I think some of you have misunderstood the question. The OP wants to make a div full of content behave like a link. One example of this would be facebook ads - if you look, they're actually proper markup. For me the no-nos are: javascript (shouldn't be needed just for a link, and very bad SEO/accessibility); invalid HTML. In essence it's this:
Edit: removed site I referenced, as it has changed beyond all recognition. |
|||||||||||||||||||||
|
|
You can't make the div a link itself, but you can make an
You can then set width and height on it. |
|||||||||||||||||||||
|
|
This is an ancient question, but I thought I'd answer it since everyone here has some crazy solutions. It's actually very very simple... An anchor tag works like this -
Sooo...
Although I'm not sure if this is valid. If that's the reasoning behind spoken solutions, then I apologise... |
|||||||||||||||||
|
|
This is a "valid" solution to achieving what you want.
But most-likely what you really want is to have an I would not advise using JavaScript to simulate a hyperlink as that defeats the purpose of markup validation, which is ultimately to promote accessibility (publishing well-formed documents following proper semantic rules minimizes the possibility the same document will be interpreted differently by different browsers). It would be preferable to publish a web page that does not validate, but renders and functions properly on all browsers, including ones with JavaScript disabled. Furthermore, using |
||||
|
|
|
Requires a little javascript.
But, your
|
|||||||||||||
|
|
First time posting, not only here but anywhere on a programming forum so go easy on me. Not sure if this is valid but it worked for me. The code :
|
|||||
|
|
To make thepeer's answer work in IE 7 and forward, it needs a few tweaks.
|
||||
|
|
|
This post is Old I know but I just had to fix the same issue because simply writing a normal link tag with the display set to block does not make the whole div clickable in IE. so to fix this issue far simpler than having to use JQuery. Firstly let us understand why this happens: IE wont make an empty div clickable it only make the text/image within that div/a tag clickable. Solution: Fill the div with a bakground image and hide it from the viewer. How? You ask good questions, now listen up. add this backround style to the a tag
And there you have it the whole div is now clickable. This was the best way for me cause Im using it for my Photo Gallery to let the user clik on one half of the image to move left/right and then place a small image as well just for visual effects. so for me I used the left and right images as background images anyway!
|
|||
|
|
Just have the link in the block and enhance it with jquery. It degrades 100% gracefully for anyone without javascript. Doing this with html isn't really the best solution imho. For example:
Then use jquery to make the block clickable (via web designer wall):
Then all you have to do is add cursor styles to the div
For bonus points only apply these styles if javascript is enabled by adding a 'js_enabled' class to the div, or the body, or whatever. |
|||
|
|
you could also try by wrapping an anchor, then turning its height and width to be the same with its parent. This works for me perfectly.
|
|||||
|
|
While I don't recommend doing this under any circumstance, here is some code that makes a DIV into a link (note: this example uses jQuery and certain markup is removed for simplicity):
Once again, I wouldn't do this so please don't vote me down. I am simply just trying to answer the question. |
|||||
|
|
This work for me:
|
|||
|
|
|
I pulled in a variable because some values in my link will change depending on what record the user is coming from. This worked for testing :
and this works too :
|
|||||
|
|
this is the simplest way. say, this is the div block I want to make clickable
so Put a href as follows.
just consider the div block as a normal html element and enable the usual a href tag. it works on FF atleast |
||||
|
|
|
if just everything could be this simple...
just think a little outside the box ;-) |
||||
|
|
|
My smarty pants answer: "Evasive answer to: "How to make block level element a hyperlink and validate in XHTML 1.1" Just use HTML5 DOCTYPE DTD." Didn't actually hold true for ie7
Works IE7-9, Chrome, Safari, Firefox, |
||||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.