I want have width and height of a full div with scroll using JQuery, but i can only have size of visible content and not size of visible + hidden content of scroll bar.
Get the element's .scrollHeight:
.scrollHeight
$(".el").get(0).scrollHeight;
It goes without saying you could use .scrollWidth for the x-axis as well.
.scrollWidth
Fiddle: http://jsfiddle.net/spN6n/