Created
December 8, 2015 06:56
-
-
Save rheajt/846a48c08949d6719e59 to your computer and use it in GitHub Desktop.
jquery add new input box with click
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Add new section click | |
$('#sections').on('click', 'button',function() { | |
var sectionNum = $('#sections').children().length + 1; | |
// Create the snippet of html for each section | |
var html = '<div class="block">'; | |
html += '<div class="inline form-group">'; | |
html += '<label>Section ' + sectionNum + '</label>'; | |
html += '<input class="lesson-section" id="section' + sectionNum + '">'; | |
html += '</div>'; | |
html += '<div class="inline form-group">'; | |
html += '<button class="addSection">+</button>'; | |
html += '</div>'; | |
html += '</div>'; | |
$('#sections').append(html); | |
$(this).hide(); | |
}); | |
//clear lesson | |
$('#clear').click(function() { | |
var firstSection = $('#sections').children().first(); | |
$('#sections').empty(); | |
$('#sections').append(firstSection); | |
$('button').show(); | |
}); | |
// insert the created lesson | |
$('#insert-lesson').click(function() { | |
var formData = {"title": $('#lesson-title').val()}; | |
$('.lesson-section').each(function() { | |
formData[$(this).attr('id')] = $(this).val(); | |
}); | |
console.log(formData); | |
google.script.run | |
.withSuccessHandler(function(response) { | |
// close the sidebar | |
}) | |
.insertLesson(formData); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment