I am currently working on a project where I have a button icon that I want to change upon clicking it. I am using the following jQuery code:
<script>
$('div[id^="module-tab-"]').click(function(){
$(this).next('.hi').slideToggle();
});
</sript>
Can someone please guide me on how to change the left arrow cursor to a right arrow cursor in jQuery? Any help with the code would be appreciated.