i've got a javascript widget that loads contents from a 3d party website and i need to use it in a sharepoint web part. The problem is that the widget works everywhere (wordpress, other websites etc.) but not inside a sharepoint web part.
Pasted in a web part it only shows chars like $0 after saving, the strange thing is that if i paste a different widget like the twitter one to retrive last tweets it works.
Is there anybody who could have a look at the code and tell me if there is something wrong with it? I'm a newbie with sharepoint, i had to clear the website name and url because the project is not yet bublic... thanks!
<link rel='stylesheet' type='text/css' href='xxx/stylesheets/widget.css'/>
<div id='xxx'></div>
<script type='text/javascript'>
var require = document.createElement('script');
require.src= 'xxx/javascripts/require-jquery.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(require);
var xxx = document.createElement('script');
xxx.src= 'xxx/plugins/4f357c414918c20001000003.js';
require.onload = function () {
$r = jQuery.noConflict();
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(xxx);
}
</script>