[jQuery] Re: Processing ajax load content before it gets added to DOM ?

2007-06-06 Thread ZebZiggle
haha ... thanks Jake. For some reason I was thinking .load() made it into a blocking call. Back to the salt mines for me. Cheers, Sandy

[jQuery] Processing ajax load content before it gets added to DOM ?

2007-06-05 Thread ZebZiggle
Hi again, I have a snippit of code that ajax loads content for me. I want to add target='_blank' to all the anchors before displaying it. I'm trying thing: function ... $('#foo').load(/get/733/).find('a').each(function() { this.target = _blank; }); A similar scheme

[jQuery] Re: ajaxForm won't submit when input has name=

2007-05-25 Thread ZebZiggle
Let me see if I can pull something together to illustrate ... stay tuned.

[jQuery] ajaxForm won't submit when input has name=

2007-05-24 Thread ZebZiggle
Hi, I have a little piece of code like this: form id='rssForm' action='/ajax/addRss/' method='post' input class='field' type='text' value='http://'/ input type='submit' value='submit'/ /form and $(document).ready(function(){ $('#rssForm').ajaxForm(function() { alert(Thank you for

[jQuery] Re: ajaxForm won't submit when input has name=

2007-05-24 Thread ZebZiggle
More info ... I inserted the ajaxForm sample code to show the about to submit / received alerts to see what I'd get. It's seeing the input and marshaling it correctly (rss=http%3A%2F %2Fasdasdasdasd) and the server is picking it up correctly and replying correctly. It's on the response that

[jQuery] Funky jquery recursion ...

2007-05-18 Thread ZebZiggle
Hey all! I'm working on a comments section for my project and it goes like this: 1. The user clicks comments and I ajax-load the comment contents ... which contains the form for submitting the comment. 2. I want to use ajaxForm to submit the new comment and refresh the comments section. The

[jQuery] Re: Funky jquery recursion ...

2007-05-18 Thread ZebZiggle
Sorry, I mean script type=text/javascript alert('hello'); $('#commentForm').ajaxForm(function() { showComments(212); }); /script

[jQuery] Controlling Scroll bars ...

2007-05-17 Thread ZebZiggle
Hi there ... I'm working on a site with a sort of Google Reader feel to it, but when you vote on the articles they go away with .hide() The problem is this causes the screen to be in the wrong position (skipping past several unread articles) ... I'd like to set the vertical scroll bar position

[jQuery] Re: Controlling Scroll bars ...

2007-05-17 Thread ZebZiggle
Yes, that's exactly what I'm looking for ... thanks. Is there a support group for this plug-in? I've got some problems with it working in an overflow-y: auto block. Cheers, Sandy

[jQuery] Re: Controlling Scroll bars ...

2007-05-17 Thread ZebZiggle
I've entered a bug in Trac on this with sample code to illustrate the problem: http://dev.jquery.com/ticket/1201