I'm trying to link some DIVs together by putting the class of DIV#2 into REL of DIV#1.

I can't find out why this doesn't work. If I html() it, it will write the correct thing.

I have made an example on jsfiddle: http://jsfiddle.net/n6Q2G/6/

Can you see whats wrong???

link|improve this question

76% accept rate
1  
The rel attribute doesn't exist on the div element, and on elements where it does exist it describes the type of relationship, not what the relationship is with. Stick to using HTML instead of made up markup languages. – Quentin Apr 28 '11 at 11:55
You can use data attributes instead of the rel, which is not valid, like pointed out by @David. In the markup you can put data-linkedto="divclass", and read it with $(selector).data('linkedto') with jQuery. – DarthJDG Apr 28 '11 at 12:09
feedback

1 Answer

up vote 0 down vote accepted

Is this what you're looking for? http://jsfiddle.net/jomanlk/n6Q2G/7/

I changed it to $("div." + sucessDialog).show();

$('.submit').click(function() {
    var sucessDialog = $('#dialogs > div:visible').attr('rel');
    $('#dialogs > div:visible').slideUp("slow");

    //just do a filter with divs that have that added class
    $("div." + sucessDialog).show();
});
link|improve this answer
It doesn't work at jsfiddle - does it? – Kenneth B Apr 28 '11 at 12:02
@KennethB does for me. One slides up and the other is shown. Doesn't work for you? – JohnP Apr 28 '11 at 12:26
Thanks a bunch! It worked live... :-) – Kenneth B Apr 28 '11 at 12:29
feedback

Your Answer

 
or
required, but never shown

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