Question

How can i request all anchors on a single HTML document?

$('.notfront article a[href!=http]').attr('href')

return only the first match,

$('.notfront article a').attr('href').match(/^#\w+/g)

also return only the first element.

Was it helpful?

Solution

function getAnchorElements(){
    var elems = [];
    $('.notfront article a').each(function(){
        if($(this).attr('href').match(/^#\w+/g))
            elems.push(this);
    });
    return elems;
}

OTHER TIPS

This should select them without the foreach loop.

$(".notfront article a[href^='#']" ).
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top