Hi Does someone know why this just wont work!! i have tried alsorts.
function loadJcrop(widthN, heightN){
var run = true;
if( run === true ) {
alert( parseInt(Number(widthN) / Number(heightN)) );
jQuery(function(widthN, heightN) {
jQuery('#cropbox').Jcrop({
onChange: showCoords, onSelect: showCoords, aspectRatio: parseInt(Number(widthN) / Number(heightN))
});
});
}
}
jQuery(window).load(function() {
loadJcrop(16, 1);
});
the alert returns 16 but nothing!!
and if i put
aspectRatio: 16
it works
any ideas??