How to replace
url : http://www.abc.com&query_id=123&query_id1=12
to : http://www.abc.com&query_id1=12
How to replace any query_id with blank in javascript ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
anyway note that you should replace the first occurence of
&with a?http://www.abc.com&query_id=123&query_id1=12should be written as
http://www.abc.com?query_id=123&query_id1=12