Write an HTML page that has a button in it. When you click on the button use JavaScript to change the background color of the button.

What will be an ideal response?


```


A Simple Web Page


A Simple Heading


This is a very simple web page. When you
click on the button the background color will be changed to yellow.







```

Computer Science & Information Technology

You might also like to view...

Given the following declarations, how would you know if head is pointing to an empty list?

struct NodeType { int number; NodeType* next; }; NodeType* head; //some other code here a. if(head->next == NULL) b. if(head == null) c. if( head == NULL) d. if( head->next==null); e. A and D f. B and C

Computer Science & Information Technology

The redo structure is also referred to as a loop or as iteration.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Rewrite the following line of code, but use type inference.

``` ArrayList mylist = new ArrayList(); ```

Computer Science & Information Technology

The IEEE ____ task group has been working on wireless QoS since May 2000.

A. 802.11e B. 802.11f C. 802.11g D. 802.11i

Computer Science & Information Technology