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
1answer
2k views
jQuery: trigger() won't work on a link
I am trying to trigger() a link but it does not seem to work.
An <img> element has a rel attribute that contains the id of the link.
Clicking on the element should trigger the corresponding ...
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
2answers
108 views
jQuery Animation Issue On Mouseenter
So I've stumbled my way through coding this little section of a site, but it's a little buggy. I know just enough jquery to be dangerous, but I'm hoping some one could help me make this better and ...
2
votes
3answers
303 views
Javascript / Jquery, open a link with a REL tag as if it were clicked?
The designer that I am working with on a project implemented a pop-up so that it is called when a static link is clicked like
<a href="#" rel="#dialog">Testing Dialog</a>
Of course, I ...
2
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 ...
1
vote
2answers
35 views
Find and add/remove class from link with matching rel value
Almost solved this, but it seems I'm not allowed to match with variables inside the jQuery "a[]" tag. I'm trying to connect an interactive map with a list of links that show active/inactive states ...
1
vote
5answers
52 views
jQuery element with href AND rel value
If we know that we can use
var link = $('a[href="http://google.com"]');
when we want to find a link with specified href attribute, and also
var link = $('a[rel="myrel"]');
when we want to find a ...
1
vote
4answers
156 views
get the value of rel attribut of a link on click event of link using jquery
I have many link like this with different rel attributes
<a href="#" class="buy" rel="WVSEU1Y">buy</a>
I want to get the value of rel attribute on click... but this code doesn't seem to ...
1
vote
3answers
277 views
Get attributes from the rel attribute with jQuery
Im using a plugin that requires the rel-element to look like this.
<ul id="product-thumbs-list">
<li><a href="1-big.jpg" rel="useZoom: 'cdonZoom', smallImage: ...
0
votes
3answers
38 views
Change multiple attributes with Jquery
I'm building an image gallery and have been able to get the clicked thumbnail image to be loaded in the main #large div a new src for the tag.
I'm trying to get the rel attribute also, in order to ...
0
votes
1answer
36 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
1answer
19 views
:first in ie6 and ie7
I want to know that would this function will work in ie 6, I currently can have ie6 on my machine
$(function(){
$('#slides-thumbs li:first a').each(function(){
$(this).removeAttr('rel');
...
0
votes
2answers
116 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
62 views
attr not worked in Chrome and safari
I've insert onclick to all with below call function :
onclick="javascript:loadcontent($(this).attr('rel'));
this code working corectly in Firefox and IE but not in Chrome
How can I fix it ?
0
votes
5answers
66 views
rel and href match
http://jsfiddle.net/aprWP/
<a href="#numtag-1">One</a>
<a href="#numtag-2">Two</a>
<a href="#numtag-3">Three</a>
<div class="numtag-1">One</div>
...
0
votes
1answer
36 views
Using rel=value inside of getJson
Let's say I have this script:
$('.myDiv').click(function(){
$.getJSON('http://example.com/t.php', {
department: 'department',
manufacturer: ''
}
What is the correct syntax ...
0
votes
1answer
107 views
How to select anchor tag with specified class and rel?
I have anchor tag like this... I need to select it!
<a href="#" class="foo bar" rel="123">...</a>
I need to write selector that selects anchor that have class like foo bar and rel like ...
0
votes
2answers
74 views
Searchbar not displaying rel tag
I have set a rel tag to display some text in my searchbar.
For some odd reason it does not show the text on the homepage:
http://www.horecavacaturebank.nl/
<input type="text" id="search" title="" ...
0
votes
1answer
47 views
jQuery: Show a DIV with a VAR as CLASS
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 ...
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
124 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
3answers
289 views
Qtip doesnt load REL URL
I am using Jquery 1.4.4 with Qtip and i am trying to load an image for each individual list item, so i am using Content: URL:.attr(rel), but it wont load the url of the REL
<script ...
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 ...
-1
votes
3answers
115 views
Jquery rel toggle?
Is it possible to toggle (switch) a rel attribute in the same way that classes can be toggled in jquery? http://api.jquery.com/toggleClass/
I am trying to create a button, that when clicked will ...
-2
votes
2answers
55 views
update attribute that is html
I have a anchor <a></a> with an attribute rel. in the rel value there is html, such as <a rel="html=<div>This is a test</div>. I want to update html inside of rel value, I ...