(function( $ ) { 'use strict'; $('#id_amd_metadescription').on('keyup', function() { var len_de = $(this).val().length; if (len_de >= 160) { $('#adpuamd_desc_charNum').html("Characters remaining: " + ( len_de - 160) + ''); } else { $('#adpuamd_desc_charNum').html("Characters exceeded: " + ( 160 - len_de)+ ''); } }); $('#id_amd_metatitle').on('keyup', function() { var len_ti = $(this).val().length; if (len_ti >=60) { $('#adpuamd_title_charNum').html("Characters remaining: " + ( len_ti - 60) + ''); } else { $('#adpuamd_title_charNum').html("Characters exceeded: " + ( 60 - len_ti)+ ''); } }); })( jQuery );