How to get default css value after jquery function

jquery

Solution

Default height value is `auto`, so you can set it back with:

$("#input_content").css({ width: 'auto' });

Problem

Hi I have one questions For example : ``` $("#menu").click(function(){ $("#left_panel, #main_footer").fadeToggle(200); $("#input_content").css({width:"100%"}); }); ``` And I want after this function css get default property

Original source

Related problems