Skip to Content
0
Aug 01, 2013 at 09:37 AM

JQuery in Web App Designer

47 Views

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!