Extracting Values From Array With Javascript
Solution 1:
"My issue is that I would like to pick up only the last item which use the class name."
OK, so in a general sense you would use the .last()
method:
var lastItem = $('.itemAnchor').last();
Except that there are no elements in the DOM with that class because (in your fiddles) they're all commented out. This is also the reason why the code you showed in your question didn't work. The first line:
var item = $('.itemAnchor')[6];
...sets the item
variable to undefined
. The selector '.itemAnchor'
returns no elements, so $('.itemAnchor')
is an empty jQuery object and it has no element at index 6
.
You need to use the '.itemAnchor'
selector on the html that you get after removing the opening and closing comments with your .replace()
statements, so:
var href = $($('.hidden_elem')[0].innerHTML.replace('<!--','').replace('-->',''))
.find('.itemAnchor').last().attr('href');
Demo: http://jsfiddle.net/rtnNd/4/
EDIT in response to comment:
"How can we pick up the itemElement before that last one."
If you know you always want the second-last item use .slice(-2,-1)
instead of .last()
, as shown here: http://jsfiddle.net/rtnNd/5/
Or if you know you want whichever one has an href
that contains a parameter h=
then you can use a selector like '.itemAnchor[href*="h="]'
with .find()
, in which case you don't need .last()
or .slice()
:
var href = $($('.hidden_elem')[0].innerHTML.replace('<!--','').replace('-->',''))
.find('.itemAnchor[href*="h="]').attr('href');
Demo: http://jsfiddle.net/rtnNd/6/
Note though that this last method using the attribute-contains selector is picking up elements where the href
has the text "h=" anywhere, so it works for your case but would also pick up hh=something
or math=easy
or whatever. You could avoid this and test for just h=
as follows:
var href = $($('.hidden_elem')[0].innerHTML.replace('<!--','').replace('-->',''))
.find('.itemAnchor')
.filter(function() {
return/(\?|&)h=/.test(this.href);
}).attr('href');
Post a Comment for "Extracting Values From Array With Javascript"