JSFiddle - React, Tailwind, and code Playground

by rodrigonery

HTML

<!doctype html>
<html>
  <head>
  <title>ExtJS</title>
<link rel="stylesheet" type="text/css" href="http://extjs.cachefly.net/extjs/4.0.1/resources/css/ext-all.css" />
  </head>
  <body>
  </body>
</html>

JavaScript

// Begin 

// Meu Autoload
var Class = (function() {
        win = new Ext.Window({
            id: 'Suissa',
            title: 'Suissa Window',
            width: 300,
            height: 180,
            layout: 'fit',    
            autoLoad: {
                url: 'http://jsfidlle.net',
                scripts: true
            }
        });
    
        // Mostra a Janela
        win.show();
});

// Load Class
Ext.onReady(Class);

        // $(document).ready(function...
        Ext.onReady(function() {
          Ext.MessageBox.confirm( 'Suissa Ă© doido?!' );
        });
// End