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???
relattribute doesn't exist on thedivelement, 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:55rel, which is not valid, like pointed out by @David. In the markup you can putdata-linkedto="divclass", and read it with$(selector).data('linkedto')with jQuery. – DarthJDG Apr 28 '11 at 12:09