$(window).scroll( function(){ $('.mov').each( function(i){ var bottom_of_element = $(this).offset().top; var bottom_of_window = $(window).scrollTop() + $(window).height(); if( bottom_of_window > bottom_of_element ){ $(this).addClass('act'); } }); }); $('.contact_foam table').replaceWith(function() { return $('
').append($(this).contents()); }); // Replace tr with div $('.contact_foam tr').replaceWith(function() { return $('
').append($(this).contents()); }); // Replace td with div $('.contact_foam td').replaceWith(function() { return $('
').append($(this).contents()); }); $('.contact_foam tbody').replaceWith(function() { return $('
').append($(this).contents()); }); $('.contact_foam font').replaceWith(function() { return $('

').append($(this).contents()); }); $('.contact_box > input[name="name"]').attr('placeholder','ȸ»ç¸íÀ» ÀÔ·ÂÇØÁÖ¼¼¿ä.') $('.contact_box > input[name="add2"]').attr('placeholder','´ã´çÀÚ¸í or ´Ð³×ÀÓÀ» ÀÔ·ÂÇØÁÖ¼¼¿ä.') $('.contact_box > input[name="receiver_email"]').attr('placeholder','À̸ÞÀÏÀ» ÀÔ·ÂÇØÁÖ¼¼¿ä.') $('.contact_box > input[name="add3"]').attr('placeholder','Çà»ç¸íÀ» ÀÔ·ÂÇØÁÖ¼¼¿ä.') $('.contact_box > input[name="address"]').attr('placeholder','ÀÔ·ÂÇØÁÖ¼¼¿ä.') $('.contact_box > input[name="add5"]').attr('placeholder','2000/00/00 AM 00:00 ~ PM 00:00.') $('.contact_box > input[name="add6"]').attr('placeholder','ex) 3½Ã°£ ¿¹Á¤') $('.contact_box > input[name="add7"]').attr('placeholder','ex) 300¸í') $('.contact_box > input[name="add4"]').attr('placeholder','ex) ÃʵîÇлý ') $('.contact_box > input[name="add10"]').attr('placeholder','ex) 100¸¸¿ø ~ 500¸¸¿ø') $('.contact_box > input[name="add9"]').attr('placeholder','ex) ¼¼±Ý°è»ê¼­, °ßÀû¼­, °Å·¡¸í¼¼¼­, °è¾à¼­') $('.contact_box > input[name="add8"]').attr('placeholder','ex) Å©±â, º¸À¯½Ã¼³(Á¶¸í, À½Çâ, ºö½ºÅ©¸°, LEDÆä³Î, POP)') $(".contact_content textarea[name='description1']").attr('placeholder','¼¼ºÎ³»¿ë Àü´ÞÀ» À§ÇØ ÀÛ¼ºÇØÁÖ¼¼¿ä.') $(document).ready(function() { // When the ".copy_guide" element is clicked $(".copy_guide").click(function() { // Copy the content from ".copy_content" var contentToCopy = $(".copy_content").text(); // Replace "
" with actual line breaks (\n) contentToCopy = contentToCopy.replace(/
/g, '\n'); // Create a temporary textarea element to copy the content var tempTextArea = $("