[jQuery] Re: Selectors , innerHTML and AJAX

2007-08-22 Thread Dan Rossi
Apologies, looks like i got it working now $('a.view').livequery('click',function(event) { $("#content").load("/index/view/episode/" + this.href); return false; }); Good stuff ! \Karl Swedberg wrote: > > > On Aug 22, 2007, at 5:41 AM, electroteque wrote: > >> >> Hi there,

[jQuery] Re: Selectors , innerHTML and AJAX

2007-08-22 Thread Dan Rossi
Hi here is the updated code $(document).ready(function(){ $("a.nav").click(function(event) { $("#content").load(this.href); event.preventDefault(); }); $('a.view').livequery('click',function(event) { alert('clicked'); return false;

[jQuery] Re: Selectors , innerHTML and AJAX

2007-08-22 Thread Dan Rossi
Hmm looks like this.href is the full url. Is there a defined way to strip the host etc so it just leaves the path. Ideally id just want to put a number in and handel the rest in the function, ie for paging numbers in a datagrid list. Dan Rossi wrote: Hi here is the updated code

[jQuery] jquery.media, plugin detection , flip4mac

2007-08-23 Thread Dan Rossi
Hi there, I am looking into the jquery.media plugin, however I need to be able to include multiple formats into the one page, and then make them switchable with links, ie we will have videos in both flash and windows media. The problem here is , there doesnt seem to be any detection features

[jQuery] Re: Use jQuery to get the Flash version?

2007-08-23 Thread Dan Rossi
Ive just been discussing with the developer of jquery.media about the need for a standard plugin detection API like jqbrowser. I think thats what you may want, there is plenty of these roll your owns around the place, need a standard one which may help alot of people. Maybe an extention to jw

[jQuery] Re: Use jQuery to get the Flash version?

2007-08-23 Thread Dan Rossi
that. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan Rossi Sent: Thursday, August 23, 2007 9:50 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Use jQuery to get the Flash version? Ive just been discussing with the developer of jqu

[jQuery] Re: Use jQuery to get the Flash version?

2007-08-24 Thread Dan Rossi
Hi how about this, its not jquery inspired though ? http://www.knallgrau.at/code/plugin_js Dan Rossi wrote: Maybe someone could combine everything if its licensed to do so ? So you wont get into trouble for "lifting" bits of code its just "organising". Andy Matthews