I have declared an object in HTML using the following code:
<object type="text/plain" id="clueBox" data="clues/random.txt" height="315" width="560"></object>
And then in my Javascript I have a function that looks like this:
function dummy(){
var box = document.getElementById("clueBox");
//alert(currentClue + " " + clueTypes[clueNum]);
box.setAttribute("type", "text/plain");
box.setAttribute("data", "clues/clue0.txt");
alert("Called Dummy");
}
Calling this function is supposed to update the clueBox object in the HTML. It works flawlessly in Firefox, but doesn't work at all in Safari. I need to make it work in Safari. Does anyone know how I can do this?