Hey all,
On my website I have added this code for content to show up in a box when clicked on it.
But I would like the content to appear smoothly. This is the code I have so far. What needs to be added, please?
Thanks.Code:<script type="text/javascript">
$(function () {
$('.toggle').click(function (event) {
event.preventDefault();
var target = $(this).attr('href');
$(target).toggleClass('hidden show');
});
});
</script>
