[jQuery] How can I refresh jQuery object's DOM (after having AJAXed dynamic content)?

2009-05-06 Thread Barney
Hello list, Is there a way I can refresh the jQuery object's DOM on command so that it can acknowledge content that's been brought in after the initial DOM ready event? Ideally, I'd find something that looked a bit like this: $.get('wad_of_unknown_content.php', someVariableParameters,

[jQuery] jQuery and Dreamweaver CS4

2009-02-21 Thread Evelyn Lee Barney
Hi - I'm new to the group. This is my first post. I'm a tech writer who's just starting to move into web development. I use Dreamweaver - but some complain that Spry Widgets are lame - and aren't as accessible to keyboard navigation as they should be. I had hoped that by leaning jQuery I

[jQuery] scrollTo plugin failing with no errors or warnings

2009-02-08 Thread Barney
Could somebody tell me how this is managing to go wrong? Site is at antoniocaniparoli.co.uk/wip I am trying to animate movement between # locations on the page — the #s being references to images in a gallery. Each image has a little caption at the bottom giving its position in the list and

[jQuery] Re: stilted animation in all browsers except Chrome Opera

2009-02-05 Thread Barney
at all in IE7: Warning: simplexml_load_file() [function.simplexml-load-file]: ^ in E: \domains\a\antoniocaniparoli.co.uk\user\htdocs\wip1\antonio.php on line 4 and other errors. On Feb 4, 3:15 pm, Barney barney.carr...@gmail.com wrote: Hi all! Having a great adventure of my first

[jQuery] stilted animation in all browsers except Chrome Opera

2009-02-04 Thread Barney
Hi all! Having a great adventure of my first jQuery website — for ages I'd been telling myself I should just get better at javascript, but I'd been following the development of Sizzle and thought, right, this is great! http://antoniocaniparoli.co.uk/wip1 I am having a bit of a headache with

[jQuery] Does jquery click() always prevent a click-through to the url?

2008-10-18 Thread Peter Barney
Is this a good way to let the user know that a slow-loading page is coming? $(#menu a).click(function(e){ $.blockUI({ message: h1Loading.../h1 }); location.href = e.target; }) I'm not very familiar with jquery, but as far as I can tell, the .click() function isn't a

[jQuery] Passing values to functions

2008-09-18 Thread Barney
Hi, I am trying to get my head around jquery and am converting some standard javascript code over. My old code was setup like this: function deleteid(id){ // Delete by id } Then for html I have: a href=javascript:void(0); id=delete onClick=deleteid('{$entry.cID}') Now moving to jQuery I just