In Internet Explorer, how to avoid single quotes.
' works for firefox etc. but Internet Explorer doesn't like it.
'
for example
<input type="text" value='Single quotes `'` Here' />
works in firefox but not in IE
& APOS; invalid HTML - this is just an XML sequence. FireFox simply shares too much code between its html and xml parser. Use & # 39; sequence (correct html escape for), as already suggested.
Use '
'
Here you can see a list of all the objects of the ISO-8859-1 HTML code (escape codes) .
AJM , :
<input type="text" value='Single quotes ' Here' />
.
It seems that some versions of Internet Explorer (correctly) do not recognize the object 'in HTML, only in XML, so you might be lucky with '.
Source: https://habr.com/ru/post/1714079/More articles:Creating XML from joining multiple tables in SQL Server - joinScala listing and reflection - reflectionIs it possible to use a python module that is not installed in python directories on Linux? - pythonHow was car physics implemented in carmageddon 2? - physicsPHP pfsockopen in session - phpASP.NET routing: missing RouteCollection class - asp.netHow to make vim recognize CJK characters and display them more than ASCII? - vimMoving a keyboard using Jython / Swing - pythonAndroid: is it more efficient to use a text file or XML file to store static data - androidMigrating a database from SQL 7 to 2005/2008 - sql-serverAll Articles