Reputation: 465
Im at my wits end trying to find a problem with a html/javascript page that acts like a widget that wont load in ie6 or ie7.. Would anyone be able to point me in the right direction on this?
http://cdn.xas.com/SampleOutput.html
Im guessing its some problem with some of my javascript?
I am building up the html in javascript, it could also be the html thats generated from this yes?
thanks Neil
Upvotes: 3
Views: 157
Reputation: 1503
Although this doesn't answer your question- Why are you trying to make it work on IE6/7 ?
IE6 & 7 are barely used and are being phased out. You're better off spending your time optimizing for current browsers..
According to http://www.theie7countdown.com/, the worldwide usage of IE7 is 4%. According to http://www.w3schools.com/browsers/browsers_explorer.asp , it's now less than 1%.
With regards to this specific widget/project, is it taking you more than 1-4% of your time to address this issue?
Just my thoughts...
Upvotes: 0
Reputation: 1011
There are no offers displayed as dataCollection.Offers
passed into function core.createOffersList
, sourced from this.eventData
in the BoonCentral.Com.Cdn.Widget
, class is an empty array. As assigned by line 494:
this.eventData = {"Address":"10 Wellington Quay Jamestown, Dublin","ID":48,"LogoUrl":"http:\/\/www.booncentral.com\/VenueImages\/48\/201209171247\/0e8ed5bd-6076-4b67-a96a-5365cf225636the_workmans_club_dublin_28659.gif","Name":"The Workmans","Offers":[],"VenueProfile":"<p> <\/p><p>Dublin's most excellent new live music venue, situated in the heart of \u000d\u000athe city and open Monday to Sunday from 5pm til, well, when we kick you \u000d\u000aout!<\/p>"};
For IE6, you may be hitting this issue: http://kmleeblog.wordpress.com/2011/07/20/document-createelement-problem-in-ie6/
Hope this helps you narrow down the problem :-).
Upvotes: 3