<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.24/browser.js"></script>
<script src="https://npmcdn.com/react@latest/dist/react-with-addons.js"></script>
<script src="https://npmcdn.com/react-dom@latest/dist/react-dom.js"></script>
<script src="https://facebook.github.io/react/js/jsfiddle-integration-babel.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<div id="container">
<!-- This element's contents will be replaced with your component. -->
</div>
JavaScript 1.7
class EducationDetails extends React.Component {
constructor(props) {
super(props);
}
render() {
return (<div>
<p>FirstName: <input type="text" value={this.props.value || ''} /></p>
<p>LastName: <input type="text" value={this.props.value || ''} /></p>
</div>
);
}
}
class App extends React.Component {
constructor(props) {
super(props);
this.state = {value: [], count: 1}; //initial you'll have one form
}
addMore(){
this.setState({count: this.state.count+1})//on click add more forms
}
removeClick(){
this.setState({
count: this.state.count - 1
})
}
displayForm(){
let forms = [];
for(let i = 0; i < this.state.count; i++){
forms.push(
<div key={i}>
<EducationDetails value={this.state.value[i] || ''} />
</div>
)
}
return forms || null;
}
render() {
return (
<form >
{this.displayForm()}
<input type='button' value='add more' onClick={this.addMore.bind(this)}/>
<input type='button' value='remove' onClick={this.removeClick.bind(this)}/>
</form>
);
}
}
ReactDOM.render(<App />, document.getElementById('container'));
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Fiddle Pages
Your fiddles accessible under a custom domain and a vanity path.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!