I see the use of "%" a lot in this jQuery documenation.
Example:
$( "input" ).each( function( i, el ) {
var elem = $( el );
elem.val( elem.val() + "%" );
});
$( "input" ).val(function( index, value ) {
return value + "%";
});
What is the meaning of, "%" in these contexts?