Domanda

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?

È stato utile?

Soluzione

Try using attribute selector like below,

$('link[rel=shortlink]')

Altri suggerimenti

var findit = $('head').find('link[rel="shortlink"]');

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top