jQuery(document).ready(function($) { jQuery('.bug_blog_color').wpColorPicker(); $( ".widget-social-input .item-list" ).sortable({ handle: '.sort' }); $( ".widget-advertisement .item-list" ).sortable({ handle: '.sort' }); $(document).on('click', ".widget-social-input .item .remove, .widget-advertisement .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); //$('.bug_blog_color').wpColorPicker(); }) $(document).on('click', ".widget-advertisement .add", function(){ var name_field = $(this).attr('name-data'); var widget_id = $(this).attr('widget-id'); var unique_key = $.now(); var html = '

Banner image url

Banner target url

'; $("#"+widget_id+" .item-list").append(html); //$('.bug_blog_color').wpColorPicker(); }) })