fluxion/Sites/Facebook/index.js

12 lines
294 B
JavaScript
Raw Normal View History

2016-08-22 07:39:21 -06:00
// 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");
});