Create the following HTML and you could figure out how to generate random number by Javascript. Continue reading Javascript – Generate Random Number
Tag Archives: W3Schools
CSS – Add scroll bar to div
A scroll bar could be added to a div by applying the overflow property in CSS.
.scrollable {
height: 100px;
overflow-y: scroll;
}
XSLT – Tutorial and Reference
I found a very useful XSLT Tutorial and Reference in W3Schools. It is a good starting guide for XSLT beginners like me =).
W3Schools – XSLT Tutorial
Done =)