Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 20th, 2012  |  syntax: None  |  size: 0.37 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Print html contents directly using jquery
  2. $.post("GetData",{
  3.  
  4.      itemCode:getItemCode
  5.  
  6.     }, function(html) {
  7.  
  8.          //want to Print to a printer directly html contents using jquery
  9.  
  10.     });
  11.        
  12. $.post("GetData",{
  13.  
  14.      itemCode:getItemCode
  15.  
  16.     }, function(html) {
  17.  
  18.          //want to Print directly html contents using jquery
  19.         $("#mydiv").html(html)
  20.  
  21.     });