Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to make it so that a whole div is clickable and links to another page when clicked without javascript and with valid code.

If I have this which is what I want the result to do -

<a href="#">
<div></div>
</a>

it sais that block elements shouldnt be placed inside an inline element. Is there a better way to do this?

share|improve this question
1  
just add a click event listener to the div? – Joseph Marikle Nov 17 '11 at 0:06
You mean without javascript? – Kai Qing Nov 17 '11 at 0:07
3  
does html and css include javascript? dont think so – Andy Lobel Nov 17 '11 at 0:10
2  
@KaiQing so by your reckoning, you can nest a head tag inside a body tag and that's OK? Semantic markup is there for a reason. If everything was governed by the fact that everything is a DOM element, we may as well just have one tag called object. – Alex Norcliffe Nov 17 '11 at 1:24
1  
Just make the <a> a block element. – Nightfirecat Nov 17 '11 at 21:08
show 3 more comments

12 Answers

up vote 19 down vote accepted

a whole div links to another page when clicked without javascript and with valid code, is this possible?

Pedantic answer: No.

As you've already put on another comment, it's invalid to nest a div inside an a tag.

However, there's nothing preventing you from making your a tag behave very similarly to a div, with the exception that you cannot nest other block tags inside it. If it suits your markup, set display:block on your a tag and size / float it however you like.

If you renege on your question's premise that you need to avoid javascript, as others have pointed our you can use the onClick event handler. jQuery is a popular choice for making this easy and maintainable.

share|improve this answer
10  
As of HTML5, having a <div> inside an <a> tag is valid: "the a element is now transparent; that is, an instance of the a element is now allowed to also contain flow content". dev.w3.org/html5/markup/a.html#a-changes – Damien Jan 3 at 9:25
brilliant @Damien, you are correct. <a href="#"> <div></div> </a> is valid HTML5. Thank you for simplifying my life! – David Taiaroa Feb 22 at 20:13

It is possible to make a link fill the entire div which gives the appearance of making the div clickable.

CSS:

#my-div {
    background-color: #f00;
    width: 200px;
    height: 200px;
}
a.fill-div {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

HTML:

<div id="my-div">
    <a href="#" class="fill-div"></a>
</div>
share|improve this answer
1  
See this page to make it work properly in Internet Explorer (basically just set the width or height to 1%: v3.thewatchmakerproject.com/journal/154/… – sventech Jan 4 at 17:20

jQuery would allow you to do that.

Look up the click() function: http://api.jquery.com/click/

Example:

$('#yourDIV').click(function() {
  alert('You clicked the DIV.');
});
share|improve this answer
1  
OP asked for no javascript – Alex Norcliffe Nov 17 '11 at 0:43
3  
@AlexNorcliffe He edited his post after I submitted the answer. – Josh Foskett Nov 17 '11 at 0:48
@JoshFoskett I would, instead of showing an alert box, to redirect to another page (like a usual href). How can I do that? I come across something like localtion.href, does that help? – DiAlex Mar 29 at 22:27
@DiAlex This should work for you. jsfiddle.net/mdc2h – Josh Foskett Mar 30 at 22:53
Thx! I ended using something very similar, also using the click event: $("#div-id").click(function() { location.href = "./page.html"; }); – DiAlex Mar 31 at 14:56

my solution without js / images...only CSS. It works in all browsers.

HTML:

<a class=add_to_cart_2 href='http://www.redracingparts.com' title='Add to Cart!'>
<span class=whitetitle>buy now</span><span class=testobasewhite_small><br>free shipping<br>no further costs</span></a>

CSS:

.add_to_cart_2:hover{background-color:#FF9933;text-decoration:none;color:#FFFFFF;}
.add_to_cart_2{cursor:pointer;background-color:#EC5500;display:block;text-align:center;margin-top:8px;width:90px;height:31px;border-radius:5px;border-width:1px;border-style:solid;border-color:#E70000;}

There is an example on http://www.redracingparts.com/english/motorbikesmotorcycles/stackoverflow/examples/div/clickable.php .

share|improve this answer

Well you could either add <a></a> tags and place the div inside it, adding an href if you want the div to act as a link. Or else just use Javascript and define an 'OnClick' function. But from the limited information provided, it's a bit hard to determine what the context of your problem is.

share|improve this answer
i already use this but it sais your not aloud to put block elements inside inline elements so was tryna find a good way to do it (: – Andy Lobel Nov 17 '11 at 0:18
OP asked for "valid code" (I assume they meant valid markup) - nesting a tags inside divs is not valid. – Alex Norcliffe Nov 17 '11 at 0:35

Nesting block level elements in anchors is not invalid anymore in HTML5. See http://html5doctor.com/block-level-links-in-html-5/ and http://www.w3.org/TR/html5/the-a-element.html. I'm not saying you should use it, but in HTML5 it's fine to use <a href="#"><div></div></a>.

The accepted answer is otherwise the best one. Using JavaScript like others suggested is also bad because it would make the "link" inaccessible (to users without JavaScript, which includes search engines and others).

share|improve this answer

Without JS, I am doing it like this:

My HTML:

<div class="container">
  <div class="sometext">Some text here</div>
  <div class="someothertext">Some other text here</div>
  <a href="#" class="mylink">text of my link</a>
</div>

My CSS:

.container{
position: relative;
}
.container.a{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-indent: -9999px; //these two lines are to hide my actual link text.
overflow: hidden; //these two lines are to hide my actual link text.
}
share|improve this answer

Something like this?

<div onclick="alert('test');">

</div>
share|improve this answer
While I normally don't encourage inline handlers, in this specific situation it might actually be the best option – Esailija Nov 17 '11 at 0:11
2  
OP asked for no javascript – Alex Norcliffe Nov 17 '11 at 0:42

AFAIK you will need at least a little bit of JavaScript...

I would suggest to use jQuery.

You can include this library in one line. And then you can access your div with

$('div').click(function(){
  // do stuff here
});

and respond to the click event.

share|improve this answer
<div onclick="location.href='#';" style="cursor: pointer;">
</div>
share|improve this answer

we are using like this

     <label for="1">
<div class="options">
<input type="radio" name="mem" id="1" value="1" checked="checked"/>option one
    </div>
</label>
   <label for="2"> 
<div class="options">
 <input type="radio" name="mem" id="2" value="1" checked="checked"/>option two
</div></label>

using

  <label for="1">

tag and catching is with

id=1

hope this helps.

share|improve this answer

There are a couple of JavaScript solutions posted here. I just wanted to point out that using JavaScript you take away the user's possibility to open the link in a new tab or window.

SHIFT + Click or CTRL + Click will result in the same as simply clicking the DIV. It will open up in the same tab/window. Something which is not desirable imho.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.