Im new to javascript and jquery. my website has jquery running.
It want to change css-link using radio-buttons
It has the following radio buttons:
<input type="radio" name="css" value="basic" checked>basic
<input type="radio" name="css" value="round" >round
<input type="radio" name="css" value="zoom" >zoom
What i need is, when user change radio button, the script should get the current url (eg. http://mysite.com/about.php) and add the selected button value as a query string (eg. http://mysite.com/about.php?css=round) and redirect to that link with query-string. (if current link has ?css=basic it should change it to ?css=round...)
thanks