I want to rotate div text after button click using jquery and css
If the user clicks the Rotate Left button, then the text rotates on the left side
or
the user clicks the Rotate Right button, then the text rotates on the right side
Example:
<div id="RotateDiv">Happy Birthday</div> <button id="btnRotateLeft" type="button">Rotate Left</button> <button id="btnRotateRight" type="button">Rotate Right</button>
javascript jquery html css
RAJNIK PATEL
source share