Im using ajax to load some data from a mysql database... my problem is, it getting the id for the data i want to load, i have set the HREF value as the id... so an example is:

`<a href="16" title="View Story: ssasds">ssasds</a>`,

16 is the id value i need... my code is:

$('.artefact').click(function()
                {

                var storyId = $('a',this).attr('href');
                console.log(storyId);
                               }

when i check the console (firebug) it just says undefined. please try and help out, as i have tried other methods of getting the data but gets messy.

thanks

link|improve this question

67% accept rate
2  
Show us some HTML please. – Peeter Apr 11 '11 at 10:46
1  
try console.log($("a", this)) and also try $(this).find("a") – Raynos Apr 11 '11 at 10:47
may be you need to use just $(this).attr('href') – Andrei Andrushkevich Apr 11 '11 at 10:47
<div class="story_preview"> <div class="artefact"><a title="View Story: ssasds"> <img src="i4.ytimg.com/vi/VQ-nS9Q-prw/default.jpg"; width="130" height="90" alt="ssasds video Preview"> </a> <div class="story_title"><a href="16" title="View Story: ssasds">ssasds</a></div> </div> – nmyster Apr 11 '11 at 10:49
@Neil Stewart: You have to links (a), and first one doesn't have href attribute. So to get that href, you could use: $('a', this).last().attr('href'). (I think this was correct syntax) – enoyhs Apr 11 '11 at 10:51
show 1 more comment
feedback

7 Answers

up vote 0 down vote accepted

Seems like .artefact has two as. Based on this:

$('.artefact').click(function () {
    var storyId = $('a', this).filter("[href]").attr('href');
    console.log(storyId);
});

EDIT

On second thought, this looks cleaner:

$('.artefact').click(function () {
    var storyId = $(this).find("a[href]").attr('href');
    console.log(storyId);
});
link|improve this answer
I am retard.... FIXED. i didnt realise that A) The link i did have in, was infact within a different DIV that was also in artefact, but B) that the first link in the artefact div, has no HREF attribute. Im sorry for wasting time :( – nmyster Apr 11 '11 at 11:09
@Neil: You're not creating a YouTube playlist, are you? – Salman A Apr 11 '11 at 11:19
No. i have a university coursework to make a web magazine type thing... i've decided to make a website that looks like a news paper, im using PHP and jquery to load the stories from a database... newspaper.nmyster.co.uk if you wanna check it out. im new to jquery. – nmyster Apr 11 '11 at 11:34
I meant AJAX and PHP, but using Jquery cause its better – nmyster Apr 11 '11 at 11:34
feedback

Is .artefact a link? If yes, why to use $('a', this) instead of just $(this)?

link|improve this answer
1  
.artefact is a div, it has an image in it and a anchor tag. – nmyster Apr 11 '11 at 10:48
using @Raynos comment on your question (the $(this).find('a') part) should work with that combination – Thor Jacobsen Apr 11 '11 at 10:50
[a, a 16] is returned when i use ("a", this)) in the console, so how would i get the 17 on its own, can i just create a variable with ("a",this) as the value, then cut the string the last three chatacters, then remove the ] – nmyster Apr 11 '11 at 10:52
Hmm... look at this jsFiddle: jsfiddle.net/5vPhK - is it your case? It works just right. – Olegas Apr 11 '11 at 10:53
feedback

You have 2 links in the div element (Looking at code you provided). So to get the href (if that link is always the last one in div, you should use:

$('.artefact').click(function() {
  var storyId = $('a', this).last().attr('href');
  console.log(storyId);
});

And as others have said, you were missing parentesis too.

link|improve this answer
feedback

Try this:

var storyId = $(this).attr('href');
link|improve this answer
feedback

you need to use $(this).attr('href')

link|improve this answer
i still get undefinded :( – nmyster Apr 11 '11 at 10:54
feedback

@Neil Stewart: See -- http://jsfiddle.net/Chby2/

You didn't add the artefact class to the link and your jQuery code was also missing the closing parenthesis: );

link|improve this answer
I tried the link, and it works... i tried to copy that into my script, and it does not... awww :(. I the artefact div, is held in a another div called story_preivew. and these are brought in using PHP when the page is loaded... would that have anything to do with the problem? I know if you get data using ajax you need to use .live() but i didnt think that would be a problem in this case – nmyster Apr 11 '11 at 11:00
feedback

Yeah, closing parenthesis is in fault http://jsfiddle.net/h7HuJ/1/ I used your given HTML code.

You have two anchors inside that DIV, so you need to specify, which one to select. I used your class name.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.