Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for setEventHandlers (0.07 seconds)

  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>");
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sun Oct 11 02:16:55 GMT 2015
    - 410 bytes
    - Click Count (0)
Back to Top