UPDATE 4:
I have a horrible feeling that this has slipped so far down that no one is seeing it anymore...but just in case...
I am trying to combine the clickable div code and the ajax load code (see main code block below) Everytime I add the clickable div code the load stops working. I have tried:
$(".work").on('click',function(){
window.location=$(this).find("a").attr("href");
});
$('.work a').on('click',function(event) {
event.preventDefault();
etc
this
$('div.work').on ('click',function(event) {
window.location=$(this).find("a").attr("href");
$(this).attr("href"); event.preventDefault();
and many other permutations - but they ALL stop the .load working
Have run out of ideas and getting desperate - please....
UPDATE 3:
Still struggling with this...
UPDATE 2
As the answer below keeps getting votes (even though I am not sure why it's applicable...) I have tried the following: First I updated to jQuery 1.7.1 and used .on for the clickable div code:
$(".work").on('click',function(){
window.location=$(this).find("a").attr("href");
});
that made no difference so I tried applying it to the ajax load code as well:
$('div.clickable, .work a').on('click',function(event) {
event.preventDefault();
etc
that made no difference either...
Would really appreciate an explanation as to why .live (.on) is applicable in this case when I am not trying to affect anything loaded by the ajax... clearly at least 4 members think it is...
UPDATE:
In case it helps you can see the 2 different versions below. The first shows the ajax load happening. The second simply adds the code for the clickable div, which stops the ajax load from working:
http://www.spiritlevel.co.uk/clicktest/ajaxload.html
http://www.spiritlevel.co.uk/clicktest/divclick.html
ORIGINAL POST:
I have a div element (.work) that contains an h3 tag, which contains an anchor, which loads ajax content into another div (.pictures) when clicked.
The HTML looks like this:
<div class="work">
<img class="introPic" src="images/thumb.jpg" width="250" height="99" />
<h3><img class="arrow" src="images/arrow_open.gif" alt=">" /><a class="titlelink" href="project2.html">Project 2</a></h3>
<div class="projectIntro">
<p>This is some intro text for project 2</p>
</div>
<div class="pictures"></div>
</div>
I have the ajax load working fine using this code:
jQuery(function($) {
// Adds the open and close effect for anchor links showing work.
$('.work a').click(function(event) {
event.preventDefault();
var parent = $(this).parents(".work");
var content_holder = parent.children(".pictures");
if (parent.hasClass("selected_work")) {
close_other();
return;
}
close_other();
parent.addClass("selected_work");
content_holder.load(this + " #ajaxContent", function() {
$(this).find('#slider').nivoSlider({
effect:'fade', //Specify sets like: 'fold,fade,sliceDown'
animSpeed:300,
pauseTime:4000,
controlNav:true,
pauseOnHover:true //Stop animation while hovering
});
});
$('.selected_work img.arrow').attr("src", "images/arrow_close.gif");
});
function close_other() {
var selected_work = $('.selected_work');
selected_work.children('.pictures').empty();
$('.selected_work img.arrow').attr("src", "images/arrow_open.gif");
selected_work.removeClass("selected_work")
}
$('.work a.titlelink').click(function() {
$('html,body').animate({scrollTop: $(this).offset().top}, 500);
});
});
Now I want to make the entire .work div clickable and I have found some code that I've got working:
$(document).ready(function(){
var block = $(".work");
block.click(function(){
window.location = $(this).find("a:first").attr("href")
});
block.addClass("clickable");
block.hover(function(){
window.status = $(this).find("a:first").attr("href")
}, function(){
window.status = ""
})
});
For some reason I couldn't get the shorter and more common version of the clickable div code working... this is not my main problem but it would be good if anyone could tell me why:
$(".work").click(function(){
window.location=$(this).find("a").attr("href"); return false;
});
My main problem is that although I can get the clickable div code and the ajax load code working individually, I can't get them working together. If the clickable div code comes first, the anchors link to new pages rather than loading them into the same page. And if the ajax load code comes first, the clickable div code is ignored...
I also want to ensure that my scroll still works when the .work div is clicked, as it does when the h3 link is clicked - ie this bit of code:
$('.work a.titlelink').click(function() {
$('html,body').animate({scrollTop: $(this).offset().top}, 500);
});
Hopefully a kind member of the community can help me out with this one!
thanks
block.click(...doesn't return false and$('.work').click(...does return false. Have you tried removing that in the "shorter, more common version." – Andrew Jackman Dec 4 '11 at 13:57