I came across a line of code using jQuery css method as below
var $container = $('#mycontainer'); <br>
var w = $.css($container[0], "width", true);<br>
jQuery documentation on css method was checked and didn't mention any variant with 3 parameters. I test the code in jsbin and it worked fine - return value is a number. if the last parameter was changed to false, the return is a string like 200px.
could anyone highlight me on this special syntax on method css?
Is it something deprecated ?