Hi All,
I am having javascript code for printing this is working fine but i want to call .css file in to the javascript to change the styles but i am not able to know how to call the class file in my code here is my code below and i want to call class file
is "<link href="../CSS/FAACT1.css" rel="stylesheet" type="text/css" />"
function PrintPanel()
{
var panel = document.getElementById("<%=pnlContents.ClientID %>");
var printWindow = window.open('', '', 'height=400,width=800');
printWindow.document.write('<html><head><title>DIV Contents</title>');
printWindow.document.write( ...
Go to the complete details ...