I am using jQuery Layout. I have a very simple layout with one vertical pane (west). Is it possible to get the size of the west pane after it has been resized. Below is a code snippet of an example where a call to a function happens on the resize event. I would like to get the new size after the resize, is this possible?
var myLayout;
set_layout();
function set_layout(){
myLayout = $("#my-div").layout({
west:{
size: 280,
fxName: "slide",
fxSpeed: 500,
onresize_end: function(){ get_width(); }
}
});
}
function get_width(){
code to get the WIDTH
}