Jquery Getting and setting innerWidth and innerHeight
Get width and height:
var width = $('#target-element').innerWidth();
var height = $('#target-element').innerHeight();
Set width and height:
$('#target-element').innerWidth(50);
$('#target-element').innerHeight(100);