Wow... that really fixed it... thanks so much...
--------------- Added [DATE]1248471182[/DATE] at [TIME]1248471182[/TIME] ---------------
I'm having problems with this code...
Code:
function fetch_usage(code) {
matches = new Array();
while (code.match(/(<img src="\w+\/usage\/(\w+?)\.gif">)/i)) {
matches.push(RegExp.$2);
code = code.replace(RegExp.$1, '', code);
}
return matches;
}
Works in IE... doesn't work in FF.