Rotate Pdf Object Using Javascript February 04, 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 JugaJavascript: Control Google Chrome's Open Tab Audio Volume ControlAjax Not Being CalledHow To Save Unauthorised Manipulation In A Javascript#img { -o-transform: rotate(90deg); -ms-transform: rotate(90deg); -webkit-transform: rotate(90deg); transform: rotate(90deg); } Copy Share Post a Comment for "Rotate Pdf Object Using Javascript"