How can I change a stylesheet using jquery in div tag on html? or what is the jquery code for changing stylesheets?
in javascript, we use the below code :
<script type="text/javascript">
function changeStyle() {
document.getElementById('stylesheet').href = 'design4.css';
}
</script>
Is there a jQuery way?