How to use jquery in xsl file
HiI want to implement jquery to change style in xsl,
I'm using following function, but it is not workin
Any suggestions will be of great help.
<script=text/javascript src="..... url og jquery" defer="true">
<![CDATA[
$(document).ready( function() {
alert("test");
$('.para_left').css({ margin-top: 0px !important });
});
]]>
</script>
Thanks in advance
Sharon