[jQuery] Update html attribute listener?

2009-06-10 Thread anthonyb
I apologize ahead of time, im new to jQuery so please bear with me... What im trying to do is print a link with a html relationship property that would be generated dynamically. var relvar = $('p.active').attr('rel'); $("div.test").html("hello"); $("p").click(fun

[jQuery] Re: RSS Feed Aggregator with $.ajax

2009-02-02 Thread anthonyb
Curious if I could get some more input on weather or not this script is written correctly.. thanks On Jan 31, 9:59 pm, anthonyb wrote: > Hi Richardo, > > Thanks for the help, ive been messing around with what you provided > and cant seem to get it running.. > > Anything im doing wrong?

[jQuery] Re: RSS Feed Aggregator with $.ajax

2009-01-31 Thread anthonyb
Hi Richardo, Thanks for the help, ive been messing around with what you provided and cant seem to get it running.. Anything im doing wrong?

[jQuery] Re: RSS Feed Aggregator with $.ajax

2009-01-31 Thread anthonyb
Ive been editing this a little bit and thought that what i have below would work. but it doesn't. $(function() { $.ajax({ type: "GET", url: "http://anthonyjamesbruno.com/blog/?feed=rss2";, dataType: "xml", success: function(rss) { strRSS = "" + $("

[jQuery] RSS Feed Aggregator with $.ajax

2009-01-31 Thread anthonyb
Hello I was curious if someone could help me with the output of a feed aggregator Im trying to use. Right now the feed displays the content in a series of list items with the link to read the article attached to a href. What I would like to happen, is take the link to the rss story, and attach i

[jQuery] $.ajax Feed Aggregator

2009-01-31 Thread anthonyb
I was curious if someone could help me manipulate some code. Im still pretty new to jQuery and this is over my head. $(function() { $.ajax({ type: "GET", url: "http://www.msn.com/rss/alsoonmsn.aspx";, dataType: "xml", success: function(rss) { strRS

[jQuery] Re: Rapid mouse click, stopping animation queue

2008-07-19 Thread anthonyb
is on my site: http://www.anthonyjamesbruno.com/test/jQuery/help.html On Jun 23, 3:59 pm, anthonyb <[EMAIL PROTECTED]> wrote: > Thanks Ollie > > I'll give this a shot, and If I still have issues, reply back with > examples. > > Anthony > > On Jun 22, 4:10 p

[jQuery] Re: Rapid mouse click, stopping animation queue

2008-06-23 Thread anthonyb
more information about the animated selector here; > > http://docs.jquery.com/Selectors/animated > > On Jun 22, 8:47 pm, anthonyb <[EMAIL PROTECTED]> wrote: > > > Im somewhat new to using jQuery and I am loving it so far. One problem > > that I encounter is if you h

[jQuery] Rapid mouse click, stopping animation queue

2008-06-22 Thread anthonyb
Im somewhat new to using jQuery and I am loving it so far. One problem that I encounter is if you have a element, say, for example, that is a button and on press a paragraph of text fades in. If you press the button again, jQuery fades the text out. Well this in fact works rather well, but the pr