vote up 3 vote down star

looking for a javascript class like swfobject to embed java and have a simple fallback if the user doesn't have java or refuses the security prompt.

thanks,

Josh

flag

3 Answers

vote up 5 vote down check

You could build one pretty easily.

Have something like a div set up like this:

<div id="java-applet">
Message to user saying that they need Java here
</div>

Then add Java Plugin Detection (builder) to your JavaScript. Then if that returns true, then do something like:

document.getElementById("java-applet").innerHTML = "<applet>stuff here</applet>";
link|flag
vote up 2 vote down

appletobject may work, but I have not used it.

link|flag
vote up 2 vote down

Just embed the applet like you normally do and insert the fallback inside or insert a javascript snippet to remove the object: Besides param, you can add other elements, e.g. paragraphs with text or javascript calling some function to replace the object.

<script type="text/javascript">
  function replace_object(x) {
    $(x)...
  }
</script>
<object x="y" id="some_applet">
  <param name="y" value="z">
  <p>java not available. some alternative here. <!-- option 1 --></p>
  <script type="text/javascript">
    replace_object('some_applet'); // option 2
  </script>
</object>
link|flag

Your Answer

Get an OpenID
or

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