[jQuery] Re: changing URL with slider

2009-08-30 Thread Macsig
Any ideas? Thanks On Aug 28, 7:43 am, macsig sigbac...@gmail.com wrote: Hello guys, is there a way (using a specific plugin or doing some hacking) to change the pageURLwhen I change the viewed panel within a slider? Right now I'm using tabSwitch (http://www.hieu.co.uk/blog/index.php/

[jQuery] Re: changing URL with slider

2009-08-30 Thread Macsig
Does anyone have used jquery.address (http://www.asual.com/jquery/ address/)? looks like it does exactly what I need but I have hard time to understand how it works: the docs is not so clear to me. THANKS On Aug 30, 7:07 am, Macsig sigbac...@gmail.com wrote: Any ideas? Thanks On Aug 28,

[jQuery] Re: Changing url

2008-01-16 Thread Klaus Hartl
On Jan 16, 4:11 pm, Diego [EMAIL PROTECTED] wrote: How you change the url of a tab 'on the fly' ? for example, clicking the second tab change the url of the first tab? thanks There is a tabsHref method: var $tabs = $('#example').tabs(); // change href of first tab $tabs.tabsHref(1,

[jQuery] Re: Changing url

2008-01-16 Thread Diego
:( i cant make it work. If I have a tab with a div fragment, then i click in another tab and i change the starter tab's url, should work uh? some code $(document).ready(function() { $('#container').tabs(3); //starting with third tab $('#container').tabs({

[jQuery] Re: Changing url

2008-01-16 Thread Diego
nvm It works $(function() { $('#container ul').tabs(3); $('#container ul').tabs({ cache: false }); $('#container ul').tabs({ click: function() { $('#container').tabs().tabsHref(3,'/jsp/BuscarTareas.do'); } }); }); Thanks! On 16 ene, 15:28, Diego [EMAIL PROTECTED] wrote:

[jQuery] Re: Changing url

2008-01-16 Thread Klaus Hartl
On Jan 16, 8:04 pm, Diego [EMAIL PROTECTED] wrote: nvm It works $(function() { $('#container ul').tabs(3); $('#container ul').tabs({ cache: false }); $('#container ul').tabs({     click: function() {         $('#container').tabs().tabsHref(3,'/jsp/BuscarTareas.do');     }         });

[jQuery] Re: changing url querystring in document.ready onclick

2007-08-31 Thread cfdvlpr
Here's what my url looks like: http:/.com/test.cfm/title.test-size.testSize- color.testColor#title.test2-size.testSize-color.testColor2 I want to remove the middle part of this url which is title.test- size.testSize-color.testColor Is there a a regular expression that will remove this part of

[jQuery] Re: changing url querystring in document.ready onclick

2007-08-31 Thread Ramiro Araujo
you could use document.hash = #; to remove everything behind the # character. for some reason if I use document.hash = ; the page keeps reloading indefinetly... hah Ramiro On Aug 31, 2:08 pm, cfdvlpr [EMAIL PROTECTED] wrote: Here's what my url looks like:

[jQuery] Re: changing url querystring in document.ready onclick

2007-08-31 Thread cfdvlpr
Hmm, adding that line doesn't seem to do anything.

[jQuery] Re: changing url querystring in document.ready onclick

2007-08-24 Thread Anurag
$(window).attr(location, http://www.google.com;); Cheers Anurag On Aug 23, 3:31 pm, cfdvlpr [EMAIL PROTECTED] wrote: Is there a way to change the url in the browser's address textbox everytime there is a click or other event?

[jQuery] Re: changing url querystring in document.ready onclick

2007-08-24 Thread Herr M.
No, not without actually redirecting to another url. I think it's a security risk otherwise (hiding the real url). Anders On 23 Aug, 23:31, cfdvlpr [EMAIL PROTECTED] wrote: Is there a way to change the url in the browser's address textbox everytime there is a click or other event?