An open API service indexing awesome lists of open source software.

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

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!