0
votes
1answer
25 views

jquery - How to properly copy data from div to new window dynamically

I have a problem. Im trying to create a very simple print preview that when the user clicks the Print Preview button it will open a new window and copies the data I wanted. There are some elements ...
0
votes
0answers
25 views

Printing a webpage with canvas

I am using canvas on this project I am working on to allow users to add their signature. I am having a very hard time printing this canvas signature out on paper. Using Google Chrome, the canvas ...
0
votes
0answers
29 views

Javascript using position as parameter

When a button is clicked it grabs a div for printing. (Literal onto a piece of paper printing.) Since I can't screen capture things, I'm rerendering the div for print using @media print to control ...
0
votes
0answers
29 views

Elements with display: none are printing to sheet.

Im having some trouble getting this to work I have a complex HTML page that has a chart(from Highcharts) which when I try to print just the chart, prints the chart plus the page which has all elements ...
0
votes
0answers
17 views

Printing an input's value, using a print media stylesheet

I'm using the following jQuery plugin to get a nice, user-friendly print preview and then printing using a print version of the stylesheet. https://github.com/etimbo/jquery-print-preview-plugin ...
0
votes
2answers
74 views

jQuery: Hide tr of child td that contains ul + print?

I have a <table> where certain <td> contain <ul> and I want it when a specific button is clicked, two things occur: Parent <tr> of children <td> that contain a ...
0
votes
2answers
21 views

Error Printing through iframe - 'Undefined' Error when using Ctrl+P

I have a document which pops up on the site within a JQuery Modal Box. The document has a print button at the end which just prints the document in the Pop-Up Box. I wanted to print the document, ...
0
votes
1answer
39 views

Trigger Ctrl+P printing for a JQuery Modal Box through keyboard

I have a document which pops up on the site within a JQuery Modal Box. The document has a print button at the end which just prints the document in the Pop-Up Box. I am looking to find a solution ...
0
votes
1answer
49 views

Printing the content of a div with vertical scroll

I have a div which has a fixed height and the content in it occupies more space than it's fixed height so I gave it an overflow-y:scroll . How do I print the entire content that is inside this div?
0
votes
1answer
33 views

Split table with header to print it out

I'm reading some data from MySQL with PHP and trying to print (to paper) the data on a <table> but I need to split the <table> to leave just 30 row per sheet and each sheet has to have a ...
0
votes
0answers
40 views

Pages not printing in FF *UPDATED to FF print issue*

I have some accordions and I have @media print: .accordion > *{display:block !important;} .ui-accordion .ui-accordion-content {display:block !important;} This is working great on Chrome print, ...
1
vote
2answers
62 views

How to print a Hidden DIV when printing using a JavaScript Function

I have a javascript print function: function printDetails() { var printContent = document.getElementById('<%= divMail.ClientID %>'); var windowUrl = 'about:blank'; ...
0
votes
0answers
45 views

Jquery datatable print button location?

please help me, How to move these copy, csv, excel, pdf, save button move down and more arranged and can be clicked ? http://i48.tinypic.com/2j5jfa8.jpg function refreshgrid1(){ ...
0
votes
1answer
91 views

Printing the content of a div

How do I print the content of a specific div with Javascript or Jquery? I know you can use window.print(); but that prints the whole page. Also the div that I wish to print has a vertical scroll, if ...
0
votes
1answer
92 views

Printing multiple pages in JQuery

I'm trying to print (via a printer) two or more div's, each to its own page. I'm trying out different plugins, including printArea. I've tried something along the lines of : ...
0
votes
0answers
51 views

Need to print image on background

I am trying to print images in the background with text on top of it. I have this code: $(printWin.document).find("table#careOppPracticeOverview tr th").css("img").replace('url(','').replace(')',''); ...
0
votes
1answer
136 views

sharepoint 2010 standard model dialogs print transparent merged with background content

In Sharepoint 2010 by default each list item you edit opens in a new model dialog. This dialog shows up as a new div with the class of ms-dlgContent. It also creates a div with the class ...
1
vote
1answer
245 views

How can I get jQuery printElement to print a div with css class?

I am trying to print a div with the printElement plugin. I it printing and everything is fine exept that it does not print css class at all. I have tried a lot of things like adding a class to the ...
0
votes
0answers
73 views

On print window close event in Chrome, is it possible?

I have that Chrome print dialog window which is kinda OK but I need event when that window is canceled or closed in order to trigger other function. Is it possible to do something like this.
1
vote
2answers
128 views

hide jquery ui accordion formatting when printing page

I'm trying to create an effective print.css for a running tips page. The page includes a jQuery UI Accordion to display various topics, but I'd like to not show the accordion when printing the page. ...
0
votes
0answers
292 views

Open a PDF and Print Preview jquery

I'm currently working with the ReportViewer control in an MVC3 enviroment. I've got it working along with navigation and exporting, my problem is my boss wants me to "automate" the printing or reports ...
0
votes
1answer
100 views

Print value using Jquery file

i have a function in my jqeury file the function is listed as :: function updateHTML(blocks) { var data = getData(blocks), price = formatPrice(data.price), hourly = ...
0
votes
1answer
589 views

Printing HTML + Multiple PDF files with Javascript

I've got a project where I'm needing to print the HTML page the user is on, as well as multiple PDF files (multiple prompts is OK) After hunting around on Google and Stackoverflow I found Printing ...
0
votes
1answer
165 views

Printchart title in highcharts when clicking print button when chart title is null

hi i am working on highhchart and stuck on a point which sounds very simple but cant find any answer on it . i am setting the chart title null when defining highcharts but on export am adding the ...
0
votes
1answer
40 views

Multiple print styles in one document for different DIVs

I have a content slider on a page and I want to allow site visitors to print the contents of only the slide they click on. I have 7 slides and two of them have a button within the slide that says, ...
0
votes
1answer
55 views

Prevent a ul menu from printing

I'm using the jQuery Superfish menu by Joel Birch that is based in elements and it works fine but when the user prints the page the "menu" is interpreted as a unordered list... like this: (example ...
4
votes
3answers
1k views

jquery - iframe access denied in IE on some pages

I'm the author of printThis, a jquery plugin for printing. https://github.com/jasonday/printThis I have a user that has brought up an issue, that I have been unable to crack and unfortunately, I am ...
0
votes
0answers
104 views

Getting a pdf file printed with a button click in a backbone.js view

I have a invoice generation application that generates a pdf invoice in the backend and saves it to some location. I want to put a button in the view and when clicked on it, that specific pdf file ...
3
votes
1answer
342 views

open new window to print element

try to open a new window to include the element for print only. but it did not work in IE8. function printElement(elementId) { var printWindow = window.open('', '_blank', ...
2
votes
1answer
646 views

jQuery Print - Show Preview before print

I would like to print a portion of the page, that is a div. Also I need css files referred, so it will get printed as we see in the page. I tried to use jQPrint then printThis . But my IE7 ...
2
votes
1answer
108 views

Does jQuery run when printing from browser?

I have the following code to run on the rendered template page after selecting to print from the browser: <script type="text/javascript"> $(function() { ...
0
votes
0answers
146 views

Insert a footer after every page-break-inside: avoid on all pages jQuery

I have create a print css for my stock list. The stock list can be 100's of pages. I want to be able to insert a custom footer on the bottom of every page I print. I am using a page break to stop ...
0
votes
1answer
349 views

JQplot issue - Printing with IE 8

I have an issue with printing pages in IE that have jqPlot on them. I have been trying to solve this for a while and have seen several posts which speak to fixes; however, they do not solve my ...
-4
votes
1answer
55 views

Remove any spaces when using javascript to print

I would like to use javascript to print out a page but margins or paddings keep getting appended to my item to be printed out. I am using jquery printElement!. I want my element being printed to cover ...
1
vote
1answer
1k views

Disable default print header and footer across all browsers jQuery or css [duplicate]

Possible Duplicate: Can I remove the URL from my print css, so the web address doesn’t print? I want to be able to remove/hide or disable the default print header and footer across all ...
0
votes
1answer
499 views

Print a Dynamic DIV with jquery and google chrome browser issue

i have one button in my page. when user click that button then i generate a div dynamically where i assign some text and image dynamically and print that div by jquery plug in. i did this with a ...
0
votes
0answers
213 views

The size of printable content is changed according to screen size, how to fix the size?

js $('#print').click(function() { $('#book').jqprint({ debug: false, importCSS: true, printContainer: true, operaSupport: ...
0
votes
0answers
83 views

Another approach for printing the website content using javascript

Currently I am using the method of and config the css to print the file. However, I found this way is not feasible for my case as I am printing an e-book app image, which is difficult to modify the ...
0
votes
4answers
1k views

How to print div contents keeping CSS

I would like to print div contents while keeping the css applied on the div and it inner html. Am using jQuery Print Element but its striping off the css.
-2
votes
1answer
166 views

Make a new page (print) in JavaScript [duplicate]

Possible Duplicate: Print in separate page javascript? I have a bit of a problem. I want to make a page to print in HTML, and every third table (that's what I wanna print) shall be on a new ...
0
votes
3answers
676 views

Print function not to print the whole page using jquery and css

Currently I have a web application that contains a lot of div , menu and many others layout staff. However, What I would like to have when the user click print is only two image or one image in some ...
1
vote
1answer
270 views

media print css on specific div

I use @media print for print html page. @media print work fine in simple html page. But when I call javascript the @media css not work on document. My javascript code is <script ...
-4
votes
3answers
319 views

Add different footer on every page in print preview

I have page that contains lessons,I want to print this page and i want to add footer to every page contains (current lesson name ,current lesson created date) to every page in print mode. ...
0
votes
2answers
74 views

Display all class elements even those that are not visible on screen

I am trying print out details from my page, using a separate CSS file. The problem I am having is displaying everything that I want to display. My web page has an accordion on it for different ...
0
votes
0answers
78 views

Jqplot huge memory leak in firefox when printing

I'm a beginner! I make a graph like this but with 100 curves for each series. Everything works fine, and also when I make some choice the memory usage remain around 300 Mb. But when I use the printing ...
0
votes
0answers
145 views

Printing a wide table using a print.css

I would like to print a very wide table in the follow way: Each rectangle is a sheet of paper, total area is the whole table and numbers are the order I would like to print. or At the moment ...
0
votes
2answers
148 views

JavasScript/jQuery application to print 100 invoices with one click without opening print dialog

I am trying to create an application (jQuery or JavaScript) that will print 100 unique invoices with 1 click of a print button without calling the print dialog box. Requirement is that I don't want ...
1
vote
0answers
85 views

Copied Canvas Element to iFrame not Rendering

Using jquery I am copying the contents of a DIV to a new iFrame I am creating on the fly. All the elements within the DIV are rendering properly with the exception of CANVAS elements. The CANVAS ...
0
votes
1answer
97 views

how to develop the code print friendly version

i need to print the telerik popup window in print friendly version using jquery. Have no basic knowledge in this type of print. if u have idea means please forward your knowledge. thank you
0
votes
3answers
293 views

Disable a pop up link for 5 seconds using javascript

For a project I need to print a document using PHP code. Currently I have a self closing pop up to start the print. The only problem I have is that a user could spam the button creating a lot of ...

1 2 3 4 5