Hi all,
I'm trying to load jquery library in my web application. I'm testing it with simple hide div on click function. I have downloaded and uploaded JQeruy file in MIME Repository via SE80 transaction and I'm calling it in script tag like this.
<script type="text/javascript" src="bwmimerep:///sap/bw/mime/Customer/JavaScripts/jquery-2.0.3.min.js">
$(function() {
$('#right_button').click(function() {
$('#middle').hide();
return false;
});
});
</script>
And this is not working, what can be wrong.
Thanks!