/* 인라인 이미지 에디터 */ $(document).ready( function() { jQuery.event.props.push('dataTransfer'); $('.greetings_img').bind('drop', function(e) { image_drop(e, $(this)); }); $('.greetings_img').bind('drop', function() { //$(this).css({'box-shadow' : 'none', 'border' : '4px dashed rgba(0,0,0,0.2)'}); return false; }); $('.greetings_img').bind('dragenter', function() { //$(this).css({'box-shadow' : 'inset 0px 0px 20px rgba(0, 0, 0, 0.1)', 'border' : '4px dashed #bb2b2b'}); return false; }); });