diff options
Diffstat (limited to 'static/js')
| -rw-r--r-- | static/js/ishtar.js | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/static/js/ishtar.js b/static/js/ishtar.js index 131a220c9..7dc1be345 100644 --- a/static/js/ishtar.js +++ b/static/js/ishtar.js @@ -45,3 +45,18 @@ $("#main_menu ul li").live('click', function(){      $(this).find('ul').show('slow');  }); +function load_window(url){ +    $.ajax({ +        url: url, +        cache: false, +        success:function(html){ +            $("#window").html(html); +            $("#window").show('slow'); +        }, +        error:function(XMLHttpRequest, textStatus, errorThrows){ +        } +    }); + + + +} | 
