Skip to content

Instantly share code, notes, and snippets.

@rheajt
Created December 8, 2015 06:56
Show Gist options
  • Save rheajt/846a48c08949d6719e59 to your computer and use it in GitHub Desktop.
Save rheajt/846a48c08949d6719e59 to your computer and use it in GitHub Desktop.
jquery add new input box with click
//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