I would like to append a div only if it\'s not already there. I am trying with this but it doesn\'t work:
div
$(\'#method_id\').on(\'change\', funct
the inner if should be if ($('#column_message').next('div').length===0) or if(!$('#column_message').next('div').length)
if ($('#column_message').next('div').length===0)
if(!$('#column_message').next('div').length)