>  Might be a good time for Rey or someone to do a simple tutorial
>  page ;)  (I would do one - if I could get it to work!)


Here's a trivial example:

<html>
<head>
<script type="text/javascript" src="AIRAliases.js"></script>
<script type="text/javascript" src="AIRIntrospector.js"></script>
<script type="text/javascript" src="jquery-1.2.3.js"></script>
<script type="text/javascript">
$(function() {
    $('body').one('click',function() {
        $.get('http://malsup.com/jquery/form/dummy.php', function(r) {
            $('#main').html(r);
        });
    });

    $('button').click(function() {
        window.nativeWindow.close();
    });
});
</script>
<style type="text/css">body { background: #ffd }</style>
</head>
<body>
    <h1>Hello World</h1> <button>Close</button>
    <div id="main"></div>
</body>
</html>

Reply via email to