"use strict"; /* This file is for all of your CRITICAL JS! For example, everything you would usually place in something like a window.onload function */ $(document).ready(function() { // Adds placeholder text to login form jQuery('#user_login').attr('placeholder', 'Your e-mail address'); jQuery('#user_pass').attr('placeholder', 'Your Password'); // Adds placeholder text to forgot password form jQuery('#mepr_user_password').attr('placeholder', 'Password'); jQuery('#mepr_user_password_confirm').attr('placeholder', 'Password Confirmation'); });