Is there any way to change all the links at once in the option tag?
Example:
<select size="1" name="links" onchange="window.location.href=this.value;"> <option value=" http://website.com/1001/">Blue</option> </select><br> <select size="1" name="links" onchange="window.location.href=this.value;"> <option value=" http://website.com/2001/">Red</option> </select><br> <select size="1" name="links" onchange="window.location.href=this.value;"> <option value=" http://website.com/3001/">Green</option> </select>
.... And so on about 100 links.
Now I want to change the website.com link to m.website.com the furthur link remains the same. Like m.website.com/1001, m.website.com/1002
source share