<html
xmlns="http://www.w3.org/1999/xhtml">
<head>
<script
type="text/javascript">
function
PrintDiv()
{
var divToPrint =
document.getElementById('divToPrint');
var popupWin = window.open('', '_blank', 'width=300,height=300');
popupWin.document.open();
popupWin.document.write('' + divToPrint.innerHTML + '');
popupWin.document.close();
}
script>
head>
<body
>
<div
id="divToPrint"
>
<div
style="width:200px;height:300px;background-color:teal;">
Sunil
gurjar harda
div>
div>
<div>
<input
type="button"
value="print"
onclick="PrintDiv();"
/>
div>
body>
html>