Pergunta

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?

Foi útil?

Solução

Try using attribute selector like below,

$('link[rel=shortlink]')

Outras dicas

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top