I want to know why JQuery .css method returns a default value when no style attribute is provided just like in example here
var r = $('#mmalam').css('display'); $('#result').html(r);
I made a simple div, didn't give it style attribute but still .css method is returning "display = block"
Furthermore is there any JQuery method that will return empty value when no style is provided to the element?