I'm working with an jQuery script that has gotten me pretty far but I kind of hit a mountain I can't seem to fix.
On this jsFiddle I simulated the problem : http://jsfiddle.net/nRD4L/2/
So this is the script I'm using, it enables me to click on a span and give it an function which is fine. The problem is a bit with the selector because the way it works now is that it selects the next div after the span to perform that function but due to some styling I can't have that div next to the span, it has to be a few elements before it.
jQuery(document).ready(function() {
jQuery('.social_media_updates_extended_view').hide();
jQuery(".wrapper_update_extend span").css('cursor', 'pointer').click(function() {
var $this = $(this);
$('.social_media_updates_extended_view').not($this.next("div")).fadeOut(200);
$this.next("div").fadeToggle(200);
});
});
I made an example on jsFiddle : On this jsFiddle I simulated the problem : http://jsfiddle.net/nRD4L/2/ here you should be able to see the problem. There are 4 span elements that are clickable but only the bottom two work because the div is next to the span but I need to find a way to make the top two div's to work the same like the bottom ones.