function printPartOfPage($elementId) {
var body = $("body").detach();
document.body = document.createElement("body");
var clone = $elementId.clone();
clone.appendTo($("body"));
clone.show(); // In case the content was hidden
window.print();
$("html body").remove();
body.appendTo($("html"));
}
Pass Id as : printPartOfPage($('#yourContainerIdYouwantToPrint'));
Enjoy coding..