Search code examples
jqueryrel

Get value of a specific rel using jQuery?


I'm trying to get the value of a rel under "html > head > link". (link rel='shortlink').

I've tried this code (and some others) with no luck, it just says "undefined".

var shrt = jQuery("html > head > link").find('shortlink').attr('rel');

alert("short: " + shrt);

Anyone?


Solution

  • Try using attribute selector like below,

    $('link[rel=shortlink]')