internet-explorer-7

AngularJS Routing not working in IE7

夙愿已清 提交于 2019-11-28 16:25:33
I have been implementing Routing in my app following the tutorial http://docs.angularjs.org/tutorial/step_07 I couldn't get my version to work in IE7, and after spending a while trying to work out what I have missed / done wrong I have noticed that the example doesn't work. http://angular.github.com/angular-phonecat/step-7/app/ Anyone know how to get this to work? OK I had the same problem so I started the bounty, but after that I found the working solution (for me at least): Use HTML5 shim Use JSON2.js Add all these attributes to your html node: class="ng-app:myapp" id="ng-app" ng-app="myapp"

Running AngularJS App on Internet Explorer 7

天涯浪子 提交于 2019-11-28 16:06:33
问题 Just to make sure if AngularJS works on the browsers I need, I made a simple data-binging demo that works fine on Firefox, Chrome an IE8+ but I also need to make it work on IE7. Unfortunatelly I can't make it work on it. It only shows the html with the curly braces on it, ignoring ng- attributes. I have checked several posts about AngularJS on Internet Explorer and tried the suggested fixes on each one but nothing works on my demo. This is the HTML of my demo: <!DOCTYPE HTML PUBLIC "-//W3C/

Can I use JavaScript to set the 'name' attribute?

こ雲淡風輕ζ 提交于 2019-11-28 13:26:42
According to SitePoint (and my own experiments), the IE implementation of "setAttribute()" is buggy and unreliable. Also according to SitePoint , the name attribute is read-only. Is there another way I can set the name attributes on elements? I need this for use with radio buttons. If possible, I'd like a solution without jQuery, as I'm currently not using the library. Thanks in advance! Sitepoint lies is talking about a different usage of ‘name’ (see Anthony's comment). It's not read-only, it's just there's a long-standing IE bug (up to v7) where setting ‘name’ on form fields is only

Adding a meta tag via jquery?

余生颓废 提交于 2019-11-28 12:40:25
I need to add this meta-tag in the head section of the page as i need the page to force IE7. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> I am using DNN 5.6 How can i do this? $('head').append('<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> '); Though I'm not certain it will have an affect as it will be generated after the page is loaded -- edit -- If you want to add meta data tags for page description, use the SETTINGS of your DNN page to add Description and Keywords. Beyond that, the best way to go when modifying the HEAD is to dynamically inject your code

Floating Too Far Right

南笙酒味 提交于 2019-11-28 12:11:28
问题 I've got a record management web application which displays a master record on one screen and AJAXes dynamically built editors into an editor div, which I've used JQuery to make draggable. That works. Even though the div isn't a window, I thought it might be a nice idea to make it act a bit more like one, so I coded in a "close" button. The structure looks like this: <div id="editor"> <div id="draghandle" /> <div id="closebutton" /> <div id="editorbody" /> </div> Editorbody is variable

Textbox background image pushing out in IE 6 & IE 7

≡放荡痞女 提交于 2019-11-28 10:35:26
问题 Please see this jsFiddle example. The background image I have used on textbox pushes out of view in IE when you type in long values: Solution (in case jsfiddle gets deleted) CSS #txt_services_by_zip_code_search{ border: none; float: left; height: 22px; width: 95px; padding:0 5px; background: transparent } #txt_services_by_zip_code_search_wrapper { background: transparent url('http://i.imgur.com/quh2W.gif') no-repeat 0 -25px; display: inline-block; *display: inline; zoom: 1 } HTML <div id="txt

Element.prototype in IE7?

你离开我真会死。 提交于 2019-11-28 10:14:55
I'm trying to extend all dom elements so i can get and remove their children. The function is below (works in FF and Chrome). Is there an equivalent in IE7 to extend the base dom object? if (!Element.get) { Element.prototype.get = function(id) { for (var i = 0; i < this.childNodes.length; i++) { if (this.childNodes[i].id == id) { return this.childNodes[i]; } if (this.childNodes[i].childNodes.length) { var ret = this.childNodes[i].get(id); if (ret != null) { return ret; } } } return null; } } Element.prototype.removeChildren = function() { removeChildren(this); } Thanks! No. There will be some

jQuery $.post update not working in IE

雨燕双飞 提交于 2019-11-28 08:24:50
问题 I can't get this update script to work in IE. Works fine in every other browser. IE tells me that the update was performed. However, it wasn't. I've no more hair left to pull out..grr. BTW I've tried $.ajax and $.get too..still no luck. I'm thinking it may have something to do with the live click handler. Don't know...I've tried everything..(putting headers for no-cache, attaching a random number to the end of my url string)..nothing fricken works...blasted IE. This is the $('.save').live(

Multiple Internet Explorer instances on one machine [duplicate]

两盒软妹~` 提交于 2019-11-28 07:47:27
Possible Duplicate: Running Internet Explorer 6, Internet Explorer 7, and Internet Explorer 8 on the same machine I am looking for a tool that can allow me to run Internet Explorer 6, Internet Explorer 7 (and Internet Explorer 8 if possible) on my machine. I found something on the Internet like this and some other interesting solutions, but I need your opinion based on experience. Which is the best choice for running multiple Internet Explorer instances from the point of view of a web-developer? Edit: thank you for the help, I installed some of the tools you suggested, and I decided to stick

css background-size cover in internet explorer 7 [duplicate]

百般思念 提交于 2019-11-28 07:34:38
This question already has an answer here: Good “background-size: cover” fallbacks/shims/tricks for cross-browser compatibility on DIVs? 4 answers I know that the IE7 does not support background-size cover . I searched the web for some solutions, but the only thing i've got is that I should put a img with width: 100% and height:100% and put it as the background. Is this the only solution? I've seen some solutions with -ms-filter but it didn't work. Does anybody have another solution? 1 special thing: I have more than 1 div wich has this background-size cover property. In firefox everything