Is there a way for me to get the file url from this function without changing the javascript and without running the function?
jwplayer('jsCmgPlayer').setup({
flashplayer: 'http://website.com/player.swf',
file: 'http://website.com/0015980.mp3',
autostart: true,
'skin': 'http://www.website.com/skin.xml',
'controlbar': 'bottom',
height: 28,
width: 620
});
I want to get http://website.com/0015980.mp3 as a separate variable.
getConfigor something.var obj = {flashplayer:'http://',...};, basically everything between the curlies.