Special Characters
! @ # $ % ^ & * ( ) _ + = - { [ } ] : ; " ' | \ < , > . ? /
I have a simple saving of data. I notice that if I enter all special characters in a textbox and not using a escape
method all special character after the &
sign is being cut.
With Out Escpae
Output
! @ # $ % ^
With Escape
JS
var txt = $("txtbox").val();
Notice that the output has a %20%
how I remove it?.