Changes between Initial Version and Version 1 of Ticket #9705, comment 12
- Timestamp:
- Dec 12, 2012, 7:26:20 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9705, comment 12
initial v1 1 1 For the record in order to solve this on my website, I had to do a combination of multiple suggestions on this page. 2 2 3 1, I had to change from using .text() to .html()3 1, I had to change from using {{{.text()}}} to {{{.html()}}} 4 4 2, I had to add a blank string '' before and after my variable 5 5 3, I had to force IE to convert my variable to a string 6 6 7 7 So my final product looked like this: 8 .html('' + Variable.toString() + ''); 8 {{{.html('' + Variable.toString() + '');}}} 9 9 10 10 This is a behavior ONLY seen on Windows 7 w/ IE9 in Standards Mode.