Creating the folder structure
The first step is to create the required folder structure. We will follow the same format we have been using in previous chapters:
- Create a folder named
Chapter4
inside theMasteringjQueryUI
folder. - Inside the
Chapter4
folder, create an HTML file with the nameindex.html
, which will contain our HTML markup. - Also, copy the
js
andcss
folders inside theChapter4
folder. - Now, inside the
js
folder, create a new file, and name itmyReddit.js
. This file will contain all the code required for creating our news reader.
Once this setup is complete, we can move to the next step – designing the page.