Bug Tracker

Changes between Initial Version and Version 1 of Ticket #9705, comment 12


Ignore:
Timestamp:
Dec 12, 2012, 7:26:20 PM (10 years ago)
Author:
jmdl1983
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9705, comment 12

    initial v1  
    11For the record in order to solve this on my website, I had to do a combination of multiple suggestions on this page.
    22
    3 1, I had to change from using .text() to .html()
     31, I had to change from using {{{.text()}}} to {{{.html()}}}
    442, I had to add a blank string '' before and after my variable
    553, I had to force IE to convert my variable to a string
    66
    77So my final product looked like this:
    8 .html('' + Variable.toString() + '');
     8{{{.html('' + Variable.toString() + '');}}}
    99
    1010This is a behavior ONLY seen on Windows 7 w/ IE9 in Standards Mode.