https://github.com/janecakemaster/scripted-bklt-madlib
scriptEd madlib project
https://github.com/janecakemaster/scripted-bklt-madlib
Last synced: 2 months ago
JSON representation
scriptEd madlib project
- Host: GitHub
- URL: https://github.com/janecakemaster/scripted-bklt-madlib
- Owner: janecakemaster
- Created: 2016-04-14T17:50:36.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-14T18:15:11.000Z (about 9 years ago)
- Last Synced: 2025-02-14T07:40:48.861Z (4 months ago)
- Language: HTML
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Madlibs
1. Fork this repository and create a new workspace in cloud9
2. Create a story with ten parts of speech
3. Lost? Google your problem first and then raise your hand if you still need help. Also check out `example.html`In the following files...
### `index.html`
* new input for each word you want to ask for with an ID for each one
```html```
### `app.js`
* Add new words you want the user to fill in to the variable `story`
* for each input you have
```js
inputValue = $('#newIDHere').val();
story = story.replace("PLURAL_NOUN", inputValue);
```
* Two of the parts of speech are already there for you. You will need to add 8 more. Get creative!
* __bonus__: bold the words that the user added### bonus: style.css
Style your madlibs!