Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for setEventHandlers (0.11 sec)

  1. fess-crawler/src/test/resources/ajax/js/test.js

    $(document).ready(function(){
      openPage("home.html");
      setEventHandlers();
    });
    
    function setEventHandlers(){
      $('#info').click(function(){ openPage("info.html") } );
      $('#home').click(function(){ openPage("home.html") } );
    }
    
    function openPage(page){
      $('#content').load(page);
      location.hash = page;
    }
    
    function addFooter(msg){
      $('#footer').html($('#footer').html() + "<p>FOOTER: " + msg + "</p>");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 410 bytes
    - Viewed (0)
Back to top