12 lines
214 B
JavaScript
12 lines
214 B
JavaScript
|
$(function()
|
||
|
{
|
||
|
$('.avatar-content').parents('.form-row').hide();
|
||
|
$('.avatar-style').click(function()
|
||
|
{
|
||
|
if ($(this).val() == '2'/*custom*/)
|
||
|
{
|
||
|
$('.avatar-content').parents('.form-row').show();
|
||
|
}
|
||
|
});
|
||
|
});
|