InterviewSolution
Saved Bookmarks
| 1. |
What changes button text to the original text?(a) .button(“loading”)(b) .button(“string”)(c) .button(“reset”)(d) .button(“toggle”)The question was posed to me in examination.Asked question is from Responsive Overview topic in portion Advance HTML of HTML |
|
Answer» RIGHT option is (c) .button(“reset”) The explanation: .button(“reset”) changes button text to original text if changed, .button(“TOGGLE”) MAKES button look pressed, .button(“loading”) DISABLES the button and changes the button text to “loading…” .button(“STRING”) specifies a new button. |
|