$(function() { $(document).on('focusin', '.field, textarea', function() { if(this.title==this.value) { this.value = ''; } }).on('focusout', '.field, textarea', function(){ if(this.value=='') { this.value = this.title; } }); $('.nav ul li:first-child').addClass('first'); $('.nav a.nav-btn').click(function(){ $(this).closest('.nav').find('ul').slideToggle() $(this).find('span').toggleClass('active') return false; }) });