Is there way to or it is possible to do it using javascript/jQuery?
Based Link URL: first one will check Type A and Type B and second example will check Type D
?type=A&type=C or ?type=D
My current form:
<form name="input" action="" method="post" ><br />
Select Type: <br />
<input type="checkbox" name = "type" value="A" /> A <br />
<input type="checkbox" name = "type" value="B" /> B <br />
<input type="checkbox" name = "type" value="C" /> C <br />
<input type="checkbox" name = "type" value="D" /> D <br /> <br />
<input type="submit" value="Submit" />
Any tips and advised to do it?