[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-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: > > http:/.com/test.cfm/title.t

[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-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?

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

2007-08-23 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?