rel

Have you tinkered with Rel?

I would like to hear opinions or peoples experiences regarding Rel. Is it destined for the dustbin, or is it the next big thing in programming? I haven't tried doing anything with it yet (and it looks like you really can't at this point), but I'm intrigued by a few of the concepts discussed in it. Notably: Removal of nulls completel...

jQuery maxlength attribute problem with textareas

With jQuery version 1.2.3 I'm trying to add nodes after textarea elements with attribute 'maxlength' but it doesn't work: $("textarea[@maxlength]").after("<b>Aint working</b>"); This is the HTML code: <textarea maxlength="500">This is a test.</textarea> <textarea maxlength="250">Yet another line.</textarea> <textarea maxlength="125"...

can we have :update and :rel(html option) together in a link_to_remote tag

I have link_to_remote tag.I want to update a div.The div name is specified in the form of :rel ( need to do in this way).Can we use link_to_remote so that we can specify :rel and :update. Have any idea? Please help me. ...

To see the content POST data trasferred by jQuery

How can you see what the attribute rel contains when it is transferred by POST? I transfer a variable by the rel attribute by jQuery. I would like to know what the attribute, $_POST['answer'], contains. This question is based on this thread. jQuery IRC tells me that the solution seems to be Firebug somehow. How can you see POST data i...

Can the rel= attribute contain any string characters and still validate?

I'm wondering because I want to store something other than pre-defined keywords that are typically assigned to rel... and I just wanted to know if this is valid XHTML Strict or not. ...

Do search engines add weight for microformats?

For example, if I had <a href="http://www.example.com"&gt;My friend Bill</a> or <a href="http://www.example.com" rel="friend">My friend Bill</a> Will Google for example give extra weight to the second because I specified they are a friend? ...

jquery change attribute

hi, i have 4 links and i need to change the href attribute in a rel attribute. i know i cannot do it so i'm trying to get the data from the href attribute, setting a new attribute (rel), inserting the data inside it and then removing the href attibute. basically i'm doing this: $('div#menu ul li a').each(function(){ var lin = $...