paleozogt
paleozogt

Reputation: 6563

Javascript library to reliably load Java Applets?

Flash users have the wonderful SwfObject JavaScript library that abstracts browser differences to reliably embed swfs into their web pages. Is there a JavaScript library like this for Java Applets?

Upvotes: 2

Views: 1783

Answers (1)

BalusC
BalusC

Reputation: 1108912

Oracle itself comes with deployJava.js for this. Here's an example copied from the link:

<script src="http://www.java.com/js/deployJava.js"></script>
<script>
    var attributes = {codebase:'http://java.sun.com/products/plugin/1.5.0/demos/jfc/Java2D',
                      code:'java2d.Java2DemoApplet.class',
                      archive:'Java2Demo.jar',
                      width:710, height:540} ;
    var parameters = {fontSize:16} ;
    var version = '1.6' ;
    deployJava.runApplet(attributes, parameters, version);
</script>

Upvotes: 5

Related Questions