internet-explorer-7

CSS background-size not working in IE7/8 [duplicate]

谁说我不能喝 提交于 2019-11-28 07:31:17
问题 This question already has answers here : How do I make background-size work in IE? (8 answers) Closed 5 years ago . For some reason my background size is not working in IE 7&8. Can anyone tell me why. Also in the IE inspector, the background-size property is not showing up. <a href="" class="twitter-custom-follow-button"></a> .twitter-custom-follow-button { float: left; width: 96px; height: 20px; background: url(../img/slices/btns/twitter_follow.png); background-size: 96px 20px; background

Creating rounded corners in IE7 / IE8

亡梦爱人 提交于 2019-11-28 07:22:31
问题 I am creating a rounded corners tabs, that works fine in IE9, Mozilla and Chrome, but not in IE7/IE8. Here is the code: <div id="navbar"> <div id="holder"> <ul> <li><a href="#">Home</a></li> <li><a href="#">About Us</a></li> <li><a href="#">Contact Us</a></li> <li><a href="#">News</a></li> </ul> </div> </div> #navbar {} #holder { border-bottom:1px solid #000; overflow:hidden; } #navbar #holder ul { margin:0; padding:0; list-style:none; margin-top:15px; } #navbar #holder ul li { } #navbar

document.body.appendChild(i)

☆樱花仙子☆ 提交于 2019-11-28 07:14:19
I am getting error only in IE7 as document.body is null, wehn i debug Microsoft script editor getting error in follwing line: ie document.body.appendChild(i) code: function nm_eraseCookie(name){ nm_createCookie(name,"",-1) } var i=document.createElement('IMG'); i.src='//e.netmng.com/pixel/?aid=403'; i.width=1; i.height=1; document.body.appendChild(i); nm_createCookie('nm_belgacom_bt', escape('tv1=bun_intvtel;tv2=;tv3=;phone1=hbs_discoveryline;phone2=hbs_classical_line;phone3=;inet1=bun_nettvmob;inet2=hbs_adsl_res_plus;inet3=hbs_adsl_res_go;nm_banner=;nm_popin=hbs_discoveryline;'),183); Can you

windows authentication not working in ie7

回眸只為那壹抹淺笑 提交于 2019-11-28 06:32:47
Really need help with this and tried lots of things and run out of ideas. I have a site hosted on an internal development server, accessible for staff internally. the server setup is windows 2008 R2, iis 7.5 sql 2008 express. Im authenticating using active directory. in Chrome the site loads, and automatically logs me in recognising my name. When viewing the site in IE7 the response is: "401 - Unauthorized: Access is denied due to invalid credentials. You do not have permission to view this directory or page using the credentials that you supplied." I have tried the following: in iis set only

Web Browser component is IE7 not IE8? How to change this?

瘦欲@ 提交于 2019-11-28 05:16:57
So I have an C# Form application that utilizes the web browser component. Apparently Response.Write(Request.Browser.Version.ToString()); returns "7.0" when I visit my test page from the web browser component. How can I make this web browser component use IE8? Plip It appears you need to fiddle with the registry as per this article: - http://blogs.msdn.com/ie/archive/2009/03/10/more-ie8-extensibility-improvements.aspx To run a WebBrowser control in IE8 Standards Mode, use the following new value into the registry: [(HKEY_CURRENT_USER or HKEY_LOCAL_MACHINE)\Software\Microsoft\Internet Explorer

How to get the selected text in textarea using jQuery in Internet Explorer 7?

梦想与她 提交于 2019-11-28 05:14:56
问题 I tried the jquery-fieldselection plugin to get the selected text in textarea. It works fine in Firefox and Chrome, but not in Internet Explorer 7. I use the getSelection() method like this: textarea.getSelection(); When the text within the textarea is 12345 , and all this text is selected, Firefox and Chrome returns: start: 0 // Correct! end: 5 while Internet Explorer 7 returns: start: 5 // Why ?? end: 5 I'm looking for a cross browser solution using jQuery. 回答1: just took a look a

Rounded corners in MS IE 7

ぃ、小莉子 提交于 2019-11-28 04:42:50
问题 How do I get rounded corners in MSIE7? (and cross-browser, as a bonus, but IE7 is vital) Can I do it without extra images? Do I need a bunch of images for different text box/table sizes? Update: This is actually important, now that I think of it ... What if I am generating my HTML from PHP and it can be dynamic, so I can't really know the size? 回答1: I'd recommend using CSS3 styling and then CSS3PIE. Works like a charm! 回答2: Similar to Ian's answer, one possibility is to use CSS3's border

HTML5 and CSS3 for IE7 and IE8

断了今生、忘了曾经 提交于 2019-11-28 04:34:43
I inherited a web application where the front end uses new HTML5 tags (header, nav, section tags) and new CSS3 style attributes (rounded borders). The website looks amazing in Google Chrome and Safari. However, the client now complains the website is broken for IE7 and IE8. Everything is out of alignment and most of the styles do not render. What is the easiest way to make this website work in IE7 and IE8? Do I have to: a) Apply some hack to make IE browsers accept the new HTML5 and CSS3 features? b) A complete rewrite of the front end? Répás Try this lovely script (.js) :) And for rounded

IE7 table cells made invisible by CSS cannot be made visible by later class changes (??)

♀尐吖头ヾ 提交于 2019-11-28 04:11:43
问题 Here are two test files: http://gutfullofbeer.net/good-table.html http://gutfullofbeer.net/bad-table.html The markup on those two page is all almost the same. There's a table with two columns. The <th> and <td> elements of one column (the second one) are all given the class "junk". In the "good" page, when you load it you'll see a checkbox unchecked at the top. If you check the checkbox, the second column should disappear. If you uncheck it, the second column comes back. In the "bad" page,

window.location.hash issue in IE7

浪子不回头ぞ 提交于 2019-11-28 04:05:13
问题 We have a javascript function that should "move" a page to a certain position using anchors. This function just does window.location.href = "#" + hashName . This works in FF, but not in IE. I tested this code using IE7 under Windows XP. I have tried using window.location.href , window.location.hash , window.location.replace and all these ways, but using document object. Does anyone know how to deal with this issue? 回答1: IE and most other browsers will scroll to an anchor with anchor.focus(),