Hello,
I am having problems with our GUI, especially now that IE 11 is out. I am running jquery 1.8.0. I remember messing around with newer versions about a year ago but some of the things we were trying to do would not work. In other words, 1.8 seemed to "play" the nicest with what we wanted to do.
So, now that IE 11 is out I am having quite a few problems. I'm having problems embedding SWFs with swfObject. Our GUI no longer works locally, none of the content shows up at all. Not sure if this is a doc type problem or not.
So, basically I am looking for people in a similar situation who have used a new version of jQuery with success. Any advice would be appreciated.
Our GUI is pretty complicated but here are some jQuery calls I am concerned with:
.live
.load
.click
.find
.scrollTop
setTimeout
.fadeout
(code tags don't seem to work here)
for(i=0; i< pages_arr.length; i++){
$('#scrubberList').append('<li><span id="' + pages_arr[i].title + '" index="' + i + '" class="scrubberBtn">'</span></li>');
}
$('.scrubberBtn').click(function(){
$(this).removeClass("scrubberBtn").addClass("scrubberBtnSelected").parent().siblings().children().removeClass('scrubberBtnSelected').addClass('scrubberBtn');
current_pg_ind = this.getAttribute("index");
requestPage(parseInt(current_pg_ind));
})
.mouseenter(function(evt){
var mouseX = evt.pageX - $('#scrubber_parent').offset().left;
$('#page_display').html(this.id);
$('#scrubb_number').html(parseInt(this.getAttribute("index")) + 1);
$('#scrubb_number').css({position: "absolute", top:(-25) + 'px', left:(mouseX - 10) + 'px'});
$('#page_display').css({display:"block"});
$('#scrubb_number').css({display:"block"});
})
.mouseleave(function(){
$('#page_display').css({display:"none"});
$('#scrubb_number').css({display:"none"});
});