Click here to Skip to main content
15,881,172 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,

I have created some of the textboxes at runtime in the javascript, i retrieve the values from the database to the textbox at runtime, if the value has single quote in between the words, it skips after the single quote text, for example if the text is HI'TEXT.. It displays only HI. but it saved in the database correctly as HI'TEXT. How to resolve this
Posted
Updated 14-Jul-16 11:14am

replace " ' " with ‘
 
Share this answer
 
Comments
karthime 5-Jun-12 4:06am    
hi thank you for your response i'm getting the text in the variable and display it in textbox, can you send me the full syntax
taha bahraminezhad Jooneghani 5-Jun-12 4:15am    
in C# we just use replace mehtod, but I'm not sure in javascript:
var n=str.replace(" ' "," ‘ ");
if its work, mark my solution!:)
karthime 6-Jun-12 1:56am    
Hi, It works fine in javascript, but if i give consecutive single quote it is not worked
We can use .Replace("'","& #39;");

Please note no space in between & and #, need to post with space as output is showing as "'" again
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900