ShoeLace1291 Posted February 5, 2009 Share Posted February 5, 2009 I am trying to use window.location to redirect to another page. My function is confirmation(matchID). Say matchID is equal to 3. The url would output as match.php?action=delete;id=3. This is my code: function confirmation(matchID) { var answer = confirm("Are you sure you want to delete this item? This action CANNOT be undone.") if (answer){ window.location = "http://localhost/fourthcore/matches.php?action=delete;id=" } else{ window.location = "http://localhost/fourthcore/matches.php?view=upcoming" } } Quote Link to comment Share on other sites More sharing options...
Angerslave Posted February 5, 2009 Share Posted February 5, 2009 You can glue string like you can sum numbers - just use + window.location = "http://localhost/fourthcore/matches.php?action=delete;id=" + matchID; Or, if matchID is passing by integer, use magic ToString() method (it's not neccecarry, but it is a good practice) window.location = "http://localhost/fourthcore/matches.php?action=delete;id=" + matchID.ToString(); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.