How to get option value using $_GET and fancybox?

anchoo2kewl

New Member
In my html page\[code\]$(function(){ $('.addallitem ').fancybox({ openEffect : 'elastic', closeEffect : 'elastic' });});\[/code\]HTML\[code\] <select class="category"> <option value="http://stackoverflow.com/questions/14410642/All">All</option> <option value="http://stackoverflow.com/questions/14410642/Apparel">Apparel</option> <option value="http://stackoverflow.com/questions/14410642/Appliances">Appliances</option> </select> <a href="http://stackoverflow.com/questions/14410642/addallitem.php?category=" class="addallitem fancybox.ajax">Add All</a>\[/code\]I got confused what should i put in the \[code\]addallitem.php?category=\[/code\] ?When I click the add all there will be a pop up form and the form should receive the option valueThanks for those who help :)
 
Back
Top