12 lines
294 B
JavaScript
12 lines
294 B
JavaScript
|
// Toggle Function
|
||
|
$('.toggle').click(function(){
|
||
|
// Switches the Icon
|
||
|
$(this).children('i').toggleClass('fa-pencil');
|
||
|
// Switches the forms
|
||
|
$('.form').animate({
|
||
|
height: "toggle",
|
||
|
'padding-top': 'toggle',
|
||
|
'padding-bottom': 'toggle',
|
||
|
opacity: "toggle"
|
||
|
}, "slow");
|
||
|
});
|