[jQuery] Re: click - Basic issue

2007-05-10 Thread Klaus Hartl
Mario Moura wrote: Thanks, Works like a charm. Now I finished what I was looking for. I was working to insert a link in caption(Subtitle) of Interface SlideShow (http://interface.eyecon.ro/demos/slideshow.html http://interface.eyecon.ro/demos/slideshow.html) Here my solution:

[jQuery] Re: click - Basic issue

2007-05-10 Thread Mario Moura
Ok I did window.open(http://localhost; + ($($(a).contains($(.slideshowCaption).text()).clone().empty()).attr(href)) works fine in FF but in IE I receive the word about in the middle of my domain. Example: = http://localhostabout/home/admin Crazy bug! I trying find something but if an expert

[jQuery] Re: click - Basic issue

2007-05-10 Thread Mario Moura
Done Fixed with last Jquery version? Thanks Jquery Team! Regards Mario 2007/5/10, Mario Moura [EMAIL PROTECTED]: Ok I did window.open(http://localhost; + ($($(a).contains($(.slideshowCaption).text()).clone().empty()).attr(href)) works fine in FF but in IE I receive the word about in

[jQuery] Re: click - Basic issue

2007-05-09 Thread Aaron Heimlich
this should work: $(p).click( function() { window.location = 'http://localhost/home'; } ); but why not just use an plain old link? On 5/9/07, Mario Moura [EMAIL PROTECTED] wrote: Hi all I am trying $(p).click( function() { alert(Hello); } ); but I would like open in same window a

[jQuery] Re: click - Basic issue

2007-05-09 Thread Mario Moura
Thanks, Works like a charm. Now I finished what I was looking for. I was working to insert a link in caption(Subtitle) of Interface SlideShow (http://interface.eyecon.ro/demos/slideshow.html) Here my solution: $(.slideshowCaption).click( function openNewWindow() {