JSFIDDLE WORKING -NO IE -
http://jsfiddle.net/8Rx34/:
, "box1" "box2" "box3" "box4" "box5"
, , .
myScreenshot.
myScreenshot css:
.myScreenshot {
position: absolute;
left:0px;
top: 0px;
}
dom ( ) , .
$('body').prepend($('#myIdElementToCrop'));
> * { display: none; }
.myScreenshot:first-child{
display: initial !important;
}
, css, js , , .
$(function() {
var idOfDom = prompt("Insert ID of DOMElement to apply myScreenshot");
if ($('#'+idOfDom).length > 0){
var actualWidth = $('#'+idOfDom).width();
$('body').prepend($('#'+idOfDom));
$('#'+idOfDom).addClass("myScreenshot").css('width',actualWidth);
$('body>*').css('display', 'none').css('visibility','visible');
}
});