Rotate Pdf Object Using Javascript March 31, 2024 Post a Comment I have a pdf embedded inside an html. I need to rotate it using javascript (or jqSolution 1: try$("#img").css({'transform':'rotate(90deg)', '-o-transform': 'rotate(90deg)', '-ms-transform': 'rotate(90deg)', '-webkit-transform': 'rotate(90deg)' }); CopySolution 2: You can use css transform property http://www.w3schools.com/css/css3_2dtransforms.asp Baca JugaHow To Redirect The Request To Specified Php Page By Ajax Call?Jquery - Looping A .load() Inside A 'for' StatementPrint An Iframe Using Document.frames In Firefox#img { -o-transform: rotate(90deg); -ms-transform: rotate(90deg); -webkit-transform: rotate(90deg); transform: rotate(90deg); } Copy Share You may like these postsDisabling Pdf Toolbar In JavascriptHow To Set Number Of Copies Getprintparams()Displaying PdfsCan Abcpdf Create A Pdf From A Page Created With Javascript? Post a Comment for "Rotate Pdf Object Using Javascript"