[jQuery] Move an element

2010-01-29 Thread Daniel Beard
Hi everyone, I have the following HTML code, various times in a page: Aprecio y reconocimiento La recompensa de un trabajo bien hecho. CESUR en sus aƱos de existencia ha venido marcando una trayectoria ascendente, avalada por los resultados obtenidos. Due to the CMS, I can't put the h3 BEFORE t

[jQuery] Re: Tabs ui links

2008-09-10 Thread Daniel Beard
Hi again, Just one thing. I noticed that this only works the first time you click a link. Any subsequent links open to a new page instead of the tab. It was quite easy to fix with livequery though, giving the following code: $(document).ready(function(){ $('#example > ul').tabs({

[jQuery] Re: Tabs ui links

2008-09-08 Thread Daniel Beard
Sorry, I meant Klaus! I get called David a lot Daniel On 7 sep, 11:22, Klaus Hartl <[EMAIL PROTECTED]> wrote: > You need to ajaxify those links after the content has been loaded: > > $(function() { > $('#example').tabs({ > load: function(e, ui) { > $('a', ui.panel).

[jQuery] UI Datepicker change class on callback

2008-09-08 Thread Daniel Beard
Hi everyone, I am using the great UI Datepicker plugin to manage a property rental website. Using the "National days" technique, I am able to parse data from an XML file and show the days that the property is not available in red. So far so good, but I also need to allow the owners to change tho

[jQuery] Re: Tabs ui links

2008-09-08 Thread Daniel Beard
Thank you very much Karl, that worked perfectly! Daniel On 7 sep, 11:22, Klaus Hartl <[EMAIL PROTECTED]> wrote: > You need to ajaxify those links after the content has been loaded: > > $(function() { > $('#example').tabs({ > load: function(e, ui) { > $('a', ui.panel).clic

[jQuery] Tabs ui links

2008-09-01 Thread Daniel Beard
Hi everyone, I am using jQuery UI tabs version 3.0. I am calling the tabs content via Ajax, but the links inside the tabs don't open inside the tabs, instead they load into a new page. Is there any way to make my links load via Ajax into the current tab? Thanks, Daniel