Tagged Questions
The rel attribute specifies the relationship between the current document and the linked document
12
votes
1answer
250 views
Humans.txt file placement
Background
I'm building a web application for a client.
This app will be accessible to the world and will be placed in a directory (e.g., /my-app) in web-root. A subdomain isn't an option as they ...
5
votes
1answer
84 views
Do search engines add weight for microformats?
For example, if I had
<a href="http://www.example.com">My friend Bill</a>
or
<a href="http://www.example.com" rel="friend">My friend Bill</a>
Will Google for example give ...
4
votes
2answers
88 views
How to indicate links used as hooks for js? Or rel=“js” semantic replacement
I'm looking for good/semantic/passing-validation way to indicate my links, that are used as hooks for javascript.
<a href="somelink" rel="js">link</a>
As I understand "rel" is more ...
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
1answer
99 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
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
1answer
34 views
index, first and last meta links and rel attributes
Are the "index", "first" and "last" meta links and rel attributes deprecated?
I'm developing a cms that uses them for pagination in the head's meta links and rel attributes within the pagination nav.
...
2
votes
3answers
302 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 ...
2
votes
1answer
331 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.
1
vote
2answers
27 views
Conflict with use of rel attribute in mootools
Looking for some insight into this problem.
I have dynamically generated links on a page that launch a lightbox ie they use a rel="lightbox[...]" I'm also putting a class on the hyperlink to make a ...
1
vote
3answers
27 views
Unregistered values of rel attribute in anchor tag
I used rel values in jQuery for the parametrized (#!hashbang) AJAX calls.
<a id='_qualifier' rel='telephony' href='contact.php'>contact</a>
and with jQuery:
var hashbang = ...
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
1answer
123 views
Multiple, separate rel= tag attributes OK? (WordPress)
Is having two separate rel="" attributes in an a tag OK?
It seems WordPress by default adds a rel="nofollow" tag to all external links. In the code these are added to the very beginning of the a tag.
...
1
vote
4answers
154 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
1answer
142 views
Rails overwriting rel attribute when supplying method
In Rails 3, when utilizing the method attribute of a link_to, my custom rel value is being overwritten.
# my code:
link_to 'Add to Favorites',
profile_favorites_path(profile),
:method => ...
1
vote
3answers
275 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: ...
1
vote
2answers
85 views
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 ...
0
votes
3answers
104 views
WebView ceding rel=external links to Activity Manager
I have a WebView wherein I would like anchor tags with rel=external to open in the Android browser but all other links to stay in the WebView.
So the content will load within the WebView if the user ...
0
votes
1answer
93 views
rel=“next” and rel=“prev” for magento pagination
Hello I want to put the rel=“next” and rel=“prev” tag for category pagination into the section of my magento website. For detials on the rel=“next” and rel=“prev” tag see ...
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
1answer
133 views
Rel attribute in JSTL or displaytag
I'm using displaytah to display some users information.
In one of the columns I need to have links to users complete details. The problem is that i need to use rel attribute for the link but it seems ...
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
1answer
86 views
How to Assign rel=“cat” and rel=“tag” in Breadcrumbs
Currently I'm building a new WP theme. I'm a designer and have only basic knowledge of PHP. So for breadcrumbs, I used Dimox's script.
But from an SEO point of view, I want to add the rel="cat" and ...
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
3answers
109 views
hard link a Rel in the URL
Is it possible to make a link such that it brings up the REL of a topic,
for example if a link is
<a href="picture.jpg" rel="lightbox">Click here</a>
Is it possible to have a user ...
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
4answers
282 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
0answers
82 views
Creating a release for a diskless erlang node
Is there any good tutorial explaining how to create releases for diskless nodes (i.e. there is also a bootserver running at a node that has a normal release, and the "diskless release" only contains ...
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 ...