Hi Alex,
Thanks for your reply. I had the following codes:
<script type=”text/javascript”>
jQuery(document).ready(function() {
jQuery(‘.gd_multi_choice’).on(‘change’, function() {
var selecttag = [];
jQuery(“input[name=’geodir_add_genre[]’]:checked”).each( function (){
selecttag.push(jQuery(this).val());
});
jQuery(‘#post_tags’).val(selecttag);
});
});
</script>
Where should I paste this code onto to test?
James