JSFiddle - React, Tailwind, and code Playground

by dmazza

JavaScript

$(document).ready(function() { 
    // Add remove elements from select box 
    $('#btn-add').click(function(){ 
        $('#select-from option:selected').each( function() { 
            $('#select-to').append("value='"+$(this).val()+"'>"+$(this).text()+""); 
            $(this).remove(); }); }); $('#btn-remove').click(function(){ 
                $('#select-to option:selected').each( function() { 
                    $('#select-from').append("value='"+$(this).val()+"'>"+$(this).text()+""); 
                    $(this).remove(); 
                }); 
            }); 
    //Charecter count for message 
    $("#send_sms").charCount(); 
});