Hello,
I am getting data from the "app layer" and its returning thru a plugin that converts certain characters as their HTML equivalents....such as:
' is coming thru as "
now, I am doing pattern matching on some dropdowns...
so for example, a dropdown value would be:
This " IS " a cool game
but it shows thru the page as:
This "IS" is a cool game
the problem is, in the javascript arrays I have..I have the encoded versions...but the "text" values for the dropdowns are - This "IS" is a cool game --> so they don't match...PLUS, when I can get the array value to show, it shows in the dropdown as:
This " IS " a cool game
its not HTML-atized as it is onload....weird??????
I am getting data from the "app layer" and its returning thru a plugin that converts certain characters as their HTML equivalents....such as:
' is coming thru as "
now, I am doing pattern matching on some dropdowns...
so for example, a dropdown value would be:
This " IS " a cool game
but it shows thru the page as:
This "IS" is a cool game
the problem is, in the javascript arrays I have..I have the encoded versions...but the "text" values for the dropdowns are - This "IS" is a cool game --> so they don't match...PLUS, when I can get the array value to show, it shows in the dropdown as:
This " IS " a cool game
its not HTML-atized as it is onload....weird??????
Comment