Adding close button in div to close the box

后端 未结 7 1911
一整个雨季
一整个雨季 2020-12-23 20:13

I have created a URL preview box for the entered URL.

Preview is shown in the div box. I want to add a close option on the right top. How could be done so that when u

7条回答
  •  轮回少年
    2020-12-23 20:48

    Updated your fiddle: http://jsfiddle.net/xftr5/11/ Hope, everything is clear?

    $(document).ready(function() {
        $('.fragment i').on('click', function(e) { $(e.target).closest('a').remove(); });
    });
    

    Added jQuery and inserted an as close trigger...

提交回复
热议问题