jQuery(document).ready(function($) { jQuery(' .bug_blog_color').wpColorPicker(); $( ".widget-social-input .item-list" ).sortable({ handle: '.sort' }); $(document).on('click', ".widget-social-input .item .remove", function(){ $(this).parent().remove(); }) $(document).on('click', ".widget-social-input .add", function(){ var name_field = $(this).attr('name-data'); var unique_key = $.now(); var html = '
'; $(".widget-social-input").append(html); }) })