Tagged Questions
4
votes
2answers
3k views
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 ...
3
votes
5answers
1k views
jQuery - add/append value to “rel” attribute
I have a set of random links, like this:
<a rel="foo"> ... </a>
...
<a> ... </a>
Some of them may have a rel attribute, some not.
How can add a rel attribute with a value ...
3
votes
2answers
2k views
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'], ...
2
votes
1answer
106 views
CSS Rel not working in Google Chrome?
I'v tried adding some css specific for the rel attribute, and demoing it in chrome. Example:
pre[rel="js"]:before {
content:"JavaScript";
}
pre[rel="css"]:before {
content:"CSS";
}
Then of ...
2
votes
1answer
342 views
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.
0
votes
1answer
45 views
using variables in rel attribute in jquery and $.get function
i need a little help with this:
After loading a page i want to hide all submenus except the submenu for the loaded page.
The information which submenue should not be closed stays in a php session…so ...
0
votes
2answers
118 views
Rel attribute in jquery
Hi I want to create dynamic html which needs to render as code given below:
<a rel="{gallery: 'gal', smallimage: 'a',largeimage: 'b'}" href="javascript:void(0);"><img ...
0
votes
2answers
2k views
Jquery: Add rel attribute to <a> tags within all <li> tags of a certain class
I'm trying to add a rel="lightframe" attribute to all my 'edit' links within my admin_links_node_edit class.
Edit
My code so far looks like this:
$('.admin_links_node_edit a').each(function() {
...
0
votes
1answer
127 views
jquery parsing rel attribute
For 1 param in rel I use:
<a rel="all">All</a>
var group = $(this).attr('rel');
How to extract multiple rel attribute from link?
<a rel="all test1 test2">All</a>
TNQ!
0
votes
4answers
303 views
The “rel” attribute
I have noticed that the "rel" attribute is not used at all by browsers, does this make it an ideal place to store additional information for javascript (eg a delete ajax request could read the id from ...
0
votes
3answers
3k views
jquery change attribute
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 ...