I have div element with left and top defined, without absolute position, and I want to read the left and top values using jQuery.
Using $(\"#M
$(\"#M
It is strange behavior for jQuery. But you can use native javascript methods to get css values:
$("#Panel1")[0].style.left
This expression will return corresponding css property.