I am looking to write an html page that has a drop down menu on it and some content. For instance, a drop down menu that has the seven days of the week listed and depending which day is selected a div contains that day's activities. I know how to make this work so that you can pick the day you want, press a button, and then the browser loads a new page with the desired info. How would I go about writing it so that as soon as the user clicks on the drop down menu entry the page's info alters. I was thinking that maybe I could store the info in a bunch of hidden divs that, upon clicking on the drop down menu's entry, could be swapped in and out. I'm not sure, however, how to capture the event of an entry in a drop-down menu being selected.
You can also use AJAX to load data.
JavaScript has lots of events: http://www.w3schools.com/jsref/dom_obj_event.asp I've done poor example using divs:
|
|||||||
|
|
I would recommend you to use jQuery to achieve some show/hide tricks if you have static data like this.
If you take a look at the code, you can see I load jQuery to use function like, hide/show. Everytime a change is triggered on the drop down list, all the div in the div with the class : "hideAndShow" are hidden. Right after that, I show the div that has been selected retrieving the selected value. |
|||
|
|