$(function() { var num_members = 0; var num_songs = 0; $('#add-member-button').click(function() { num_members += 1; $('#form-members').append( '
' + '

Medlem nr. '+num_members+'

' + '
' + ' ' + ' ' + '
' + '
' + ' ' + ' ' + '
' + '
' + ' ' + ' ' + '
' + '
' ) }); $('#add-song-button').click(function() { num_songs += 1; $('#form-songs').append( '
' + '

Låt nr '+num_songs+'

' + '
' + ' ' + ' ' + '
' + '
' + ' ' + ' '+ '
' + '
' + ' ' + ' '+ '
' + '
' + ' '+ ' ' + '
' + '
' + ' '+ ' ' + '
' + '
' + ' '+ ' ' + '
' + '
' ) }); });