Hello. How do i show an input field if #tryout checkbox is checked.
I already have this which hides 2 fields, now i want to show 3 new fields..:
$('#tryout').click(function () {
$('#title').toggle(!$(this).attr('checked'));
$('.navn').toggle(!$(this).attr('checked'));
});