Heim > Fragen und Antworten > Hauptteil
$scope.bigimgFun = function () {
var width = $("#showImg").width();
var height = $("#showImg").height();
console.log(width);
console.log(height);
$("#showImg").css({
"width":(width+100).toString()+'px'}
);
};