function initHtmlCSSView() { var $ = jQuery; $('.uploaded_image').css('cursor', 'pointer'); $('.uploaded_image_path').hide(); $('.uploaded_image').bind('click', function(e){ var path = $(this).find('.uploaded_image_path').html(); var html = '
' + path + '
'; $('.selected_image_path').remove(); $('.uploaded_image_list').after(html); }); }