I want to use JQuery Mobile in one of my widgets. To do so I need to add
the following to the widget:
<script type="text/javascript"
src="http://code.jquery.com/jquery-1.5.min.js"></script>
<script type="text/javascript"
src="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js"></script>
I have this in my widget html.
When the widget is rendered by Wookie the jquery scripts are:
<script src="/wookie/shared/js/jquery/jquery-1.3.2.min.js"
type="text/javascript"></script>
<script src="/wookie/shared/js/jquery/jquery-ui-1.7.custom.min.js"
type="text/javascript"></script>
I don't want Wookie hijacking my scripts definitions in this way. What
can I do?
Ross