Posts by Eliezer • 310 points
2 posts
-
6
votes2
answers5830
viewsA: How to make the printing of pages go out the way it is seen on the screen?
If you want the print style to be the same for all your page views, you can use the media="all". <link media="all" rel="stylesheet" type="text/css" href="style.css"> If you are using the style…
-
13
votes4
answers7389
viewsA: How to make Ajax requests, with Jquery, on different domains?
It is possible to enable CORS requests in the browser by making use of jQuery with the following code: jQuery.support.cors = true; These requests between different domains for a long time…