Answers for "escape single quote html"

2

howto include the single quotes in html

<input value='it's'/>
Simply replace ' with &#39; (e.g TechLead&#39;s will display as TechLead's)
Posted by: Guest on June-18-2020
0

html escape quote in atribute

<input value="&quot;Hello world&quot;" />

<!-- Value of the input will be:
 	"Hello world"-->
Posted by: Guest on September-05-2021

Browse Popular Code Answers by Language