Creating the folder structure
The first step is to create the required folder structure:
- Just as in the previous chapters, create a folder named
Chapter6
inside theMasteringjQueryUI
folder. - Inside this folder, create an HTML file and name it
index.html
. This file will keep our HTML markup. - Also copy the
js
andcss
folder inside theChapter6
folder. - Now go inside the
js
folder, create a new file, and name ittimeline.js
. This file will have all of the JavaScript code required for our timeline.
We can now move to the next step and write the HTML markup.