Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Web Programming > JavaScript > Javascript How-To
|
Javascript How-To Ask your "How do I do this with Javascript?" questions here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Javascript How-To section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old May 9th, 2008, 01:38 PM
Registered User
 
Join Date: May 2006
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Default How to parse a parameter out of a URL onClick()

I need to create an onClick() event and need some help. I need to somehow extract a portion of my URL, which will then be used as the new URL when the user clicks on a button.

So if the existing URL = "http://website/folder/Ticket.aspx?Job=http://website.com/estimating/object/Job/detail/1111" and I want to extract the 2nd portion (http://website.com/estimating/object/Job/detail/1111) and then go there...

I'm having trouble figuring out a way to parse out that parameter. I've tried to use split with no avail - I get an error that it isn't allowed:

        var page = parent.location;
        var newpage = page.split("=")[1];
        window.location.href = newpage;

I'm stuck. Any suggestions?

 
Old May 9th, 2008, 01:45 PM
joefawcett's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 3,074
Thanks: 1
Thanked 38 Times in 37 Posts
Default

Use location.search.

--

Joe (Microsoft MVP - XML)
 
Old May 9th, 2008, 02:27 PM
Registered User
 
Join Date: May 2006
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thank you so much. The location.search worked wonderfully.

I also made sure I was looking at the proper location within my array:

var mypage = location.search;
var newpage = mypage.split("=");
window.location.href = newpage[1];

And it works!






Similar Threads
Thread Thread Starter Forum Replies Last Post
Parse XML string parameter from XSLT maulik33 XSLT 6 December 5th, 2007 11:51 AM
Passing parameter in URl alamoudi ASP.NET 2.0 Professional 3 May 4th, 2007 06:13 AM
Passing parameter in URl alamoudi ASP.NET 1.x and 2.0 Application Design 0 May 2nd, 2007 02:10 AM
parameter from URL Seeker55 Crystal Reports 2 September 11th, 2006 03:50 PM
URL Parameter bubberz BOOK: Professional SQL Server Reporting Services ISBN: 0-7645-6878-7 0 July 25th, 2005 03:03 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.