Rotate Pdf Object Using Javascript August 06, 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 JugaReact Native Change State With Unexpected LoggingJquery Capture The Word ValueFullpage Js Animation On Section#img { -o-transform: rotate(90deg); -ms-transform: rotate(90deg); -webkit-transform: rotate(90deg); transform: rotate(90deg); } Copy Share You may like these postsHow To Create The Super Saiyan Effect In CSS / JS ?Django: Static File Image URL Paths Breaks Except For Main Page TemplateHow To Make Function Return More Than One ValueNodeJS: Async Loop That Waits Between Iterations Post a Comment for "Rotate Pdf Object Using Javascript"