Avatar of Sheldon Livingston
Sheldon Livingston
Flag for United States of America

asked on 

How to process URL with a space via Javascript

I am trying to utilize this piece of classic asp code and am getting errors:
<a href='javascript:delay(Update.asp?c=" & request.QueryString("c") & "&g=" & request.QueryString("g") & "')>

Open in new window

I only get errors when request.QueryString("g") contains a space:

Invalid left-hand side in assignment

Below is the function:
<script>
	function delay (URL) {
	setTimeout( function() { window.location = URL }, 500 );
	}
</script>

Open in new window


Thoughts?
ASPJavaScript

Avatar of undefined
Last Comment
Julian Hansen

8/22/2022 - Mon