Po zaskrtnuti checkboxu jQuery zobrazi formular. Vyriesene pomocou
Kód: Vybrať všetko
$('#icq_check').change(function()
{
if ($('#icq_check').is(':checked'))
{
$('#ic').show();
}
else
{
$('#ic').hide();
}
});Kód: Vybrať všetko
$('#icq_check').ready(function()
{
if ($('#icq_check').is(':checked'))
{
$('#ic').show();
}
else
{
$('#ic').hide();
}
});Riesitelovi K+
Dakujem