Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Feb 27, 2013 09:27 AM by selvakumars
Member
92 Points
331 Posts
Feb 27, 2013 09:12 AM|LINK
hi all
please help me to do print in mvc3 using java script.here simply i tried in dummy project its not workinf, please help me out.
<script language="jscript" type="text/jscript"> function PrintDiv() { w = window.open(); w.document.write($('#PrintContent').html()); w.print(); } </script> <div> <input type="button" value="Print" id="Print" onclick="PrintDiv();"/> <div id="PrintContent"> <p>Heading</p> <p>please prin the page</p> </div> </div>
please guide me.
All-Star
86773 Points
9643 Posts
Moderator
MVP
Feb 27, 2013 09:20 AM|LINK
You need to include jQuery for that to work. You can have Microsoft's CDN (Content Delivery Network) host it for you.
ust add this above your beginning <script> tag:
<script src="http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.0.js"></script>
Feb 27, 2013 09:27 AM|LINK
its not asking anything about printing, once i click the print button its open new tab with the content in PrintContent, but its not printing.
selvakumars
Member
92 Points
331 Posts
Can you please guide me to do print in mvc3 using java script
Feb 27, 2013 09:12 AM|LINK
hi all
please help me to do print in mvc3 using java script.here simply i tried in dummy project its not workinf, please help me out.
<script language="jscript" type="text/jscript"> function PrintDiv() { w = window.open(); w.document.write($('#PrintContent').html()); w.print(); } </script> <div> <input type="button" value="Print" id="Print" onclick="PrintDiv();"/> <div id="PrintContent"> <p>Heading</p> <p>please prin the page</p> </div> </div>please guide me.
DarrellNorto...
All-Star
86773 Points
9643 Posts
Moderator
MVP
Re: Can you please guide me to do print in mvc3 using java script
Feb 27, 2013 09:20 AM|LINK
You need to include jQuery for that to work. You can have Microsoft's CDN (Content Delivery Network) host it for you.
ust add this above your beginning <script> tag:
Darrell Norton's Blog
Please click "Mark as Answer" if this helped you.
selvakumars
Member
92 Points
331 Posts
Re: Can you please guide me to do print in mvc3 using java script
Feb 27, 2013 09:27 AM|LINK
its not asking anything about printing, once i click the print button its open new tab with the content in PrintContent, but its not printing.