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?

link|improve this question

46% accept rate
How/where are you calling the function? – vascowhite Dec 1 '11 at 6:06
feedback

1 Answer

I did not have a problem with your code. I would check your error console in Safari and see if there may be a javascript error. You can open it by pressing Ctrl+Alt+C. Also is your alert getting fired?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.