Posts

Drop Down List Show and Hide using jQuery

Drop Down List Show and Hide using jQuery This is a very simple example of how you are able to use jQuery to show and hide text/div. The structure is very simple to follow, i am asking if an item exists and if the user selects "Yes" then there is a follow up question. Otherwise, the follow up question remains hidden, also the default selection in drop down is left blank. Great way to set up a questionare/survey. The example below is how the example should work: Drop Down List Test Does this item Exist? Yes No Unsure Where? And here is the code:  <h1>Drop Down List Test</h1> <form> Does this item Exist?<br> <select id="question">  <option value="" style="display:none;"></option>  <option value="Yes">Yes</option>  <option value="No">No</option>  <option value="Unsure">Unsure</option> </select> <b...

CS3530 Assignment 1

Kennesaw State University      Department of Computer Science CS3530 Operating Systems Section 01 Assignment #1 Evaluating System Performance Dalibor Labudovic 06/5/2013 Initial Problem Statement: 1.)     Copy the "batch.cpp" source file from the system directory /home/jgarrido/psim3 on CS3 compile and link using the "psim3c" script file. The 'psim3c' script is a command file that uses the GNU C++ compiler on the CS3 server. Follow the instructions in the documents provided in the course Web page. 2.)     Run (execute) the program at least three times. 3.)     Write a report describing the characteristics of the operating system modeled. Use the guidelines for structuring the report. 4.)     Change by a small amount a workload parameter (inter-arrival interval, memory requirements) in the program by executing it again. 5.)     Include at...