the Input Box has a value Hanako<.
after I call the jquery to get value, It alert Hanako<.
I want to alert Hanako<
Jquery code:
var chk_val_2 = $('#txt_rename' + chk_check).val();
alert (chk_val_2);
Please Help me.
Is your HTML like this:
<input id="txt_rename123" type="text" value="Hanako<">
HTML replaces entities in attribute values, so if you want a literal & you have to write:
<input id="txt_rename123" type="text" value="Hanako&#60;">
*and<? I doubt it.