I already tried it but if I put spaces on value, my php to show/hide div display no longer works.
This is my script for that:
$(function() {
$('#colorselector').change(function(){
$('.colors').hide();
$('#' + $(this).val()).show();
});
});
-
This reply was modified 8 years, 1 month ago by xaviern.
I also have some php code with some ifs that rename if option is test but where do I paste it?