internet-explorer-6

Float right is not working in IE 7 but works in FF IE8

怎甘沉沦 提交于 2019-12-11 06:00:33
问题 I have this code <div id="facebook_bar"> <div style="float:left;"> <img src="images/topbar_followus.png" width="70" height="25" /> <img src="images/topbar_twitIcon.png" width="30" height="25" /> <img src="images/topbar_fbicon.png" width="30" height="25" /> </div> <div id="newsletter_box"> <img src="images/topbar_subscribe.png" width="220" height="25" /> <input type="text" name="cm-ktkykk-ktkykk" id="ktkykk-ktkykk" /> <input type="image" src="images/btn_submit.png" width="55" height="25" /> <

JQuery Internet Explorer and ajaxstop

[亡魂溺海] 提交于 2019-12-11 03:10:06
问题 $(document).ajaxStart(function() {loading.show()}); $(document).ajaxStop(function() {loading.hide()}); How to invoke an event ajaxStop in Internet Explorer? ajaxStart works without problem 回答1: You want ajaxComplete $(document).ajaxComplete(function() {loading.hide()}); http://api.jquery.com/ajaxComplete/ 来源: https://stackoverflow.com/questions/6800570/jquery-internet-explorer-and-ajaxstop

Which Video Player for my website? (ie6, cross-browser compatible)

丶灬走出姿态 提交于 2019-12-11 02:35:31
问题 So! My question is pretty straight forward, I have a website (Build in ASP.NET 2.0) which uses an old video player to play the videos (FLplayer progressive) the problem is all the videos on the site got converted to .mp4 (For better quality) but this old player won't play them... Which would be a nice player for the site that works on ie6 that would play the files? 回答1: but this old player won't play them The supported video file type(s) are usually not down to the Flash video player product

Problem uploading files greater than 10Mb in IE6

非 Y 不嫁゛ 提交于 2019-12-11 02:24:40
问题 Hey. This code works in most browsers, and even partially in IE6. It uploads files less 10Mb (approximately), but not anything larger. The code specifies that those files are permitted. Also, note that it seems like the entire file seems to be transferred to the servers before disregarded. The website is at: www.mgxvideo.com/mgxcopy-alpha-3/ and can be reached by adding an item in the cart, and then clicking the upload function. Ideas? Here is the form: <form enctype="multipart/form-data"

Click anywhere to focus in CKEditor

时光毁灭记忆、已成空白 提交于 2019-12-11 00:48:24
问题 In FireFox, I can click anywhere in CKEditor (350px x 250px) to place focus on a single paragraph of text located at the top of the editor. However, in IE6 (I know, but our client insists) I must click directly atop the paragraph to focus the cursor and subsequently edit the text. CKEditor creates the following: <iframe> <html> <head>...</head> <body spellcheck="true"> <p>some text to edit</p> </body> </html> </iframe> I suspect this is an IE6 problem; any ideas??? EDIT: Apparently a known

CSS/XHTML Menu - Working in all browsers - IE6 Help

。_饼干妹妹 提交于 2019-12-11 00:27:27
问题 i found this menu that's exactly what i want. It works in all modern browsers and IE 7/8. I need to find a fix for it to work in IE6. Any help would be greatly appreciated. http://lab.returnwt.net/htmlcss/tabmenu/ 回答1: The problem with this menu in IE6 is that it's using selectors like this: header ul#menu li:hover ul IE6 only supports :hover on a elements. Fortunately, there's a really easy fix to make this menu work in IE6. It's called Whatever:hover Download the (minified) csshover3.htc

IE6 turns jar into zip

。_饼干妹妹 提交于 2019-12-10 23:55:04
问题 Using windows server, I have a path to a file that, when you click the button, executes the jar file and runs the program. At least in firefox. The problem occurs with IE6. It takes my file.jar and turns it into file.zip. Any suggestions here? 回答1: Firefox can determine correct mime-type by extension first, and check header information to find out if there's a congruent match. IE6 unfortunately doesn't. JAR file is actually is a ZIP file (rename a JAR file to zip and it'll be opened easily

IE6 changes DOCTYPE to a bad one

寵の児 提交于 2019-12-10 23:37:21
问题 I am working with website that has defined following DOCTYPE : <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> When I access that website in IE6 , DOCTYPE is magically changed to: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd"> And.. Ok - it can stay because everything looks fine.. But here is the point - just one page has DOCTYPE changed to: <

How can I remove the space around radio buttons in IE 6?

淺唱寂寞╮ 提交于 2019-12-10 22:40:22
问题 IE 6 seems to add some non-margin space around radio buttons. Is there any way to get rid of it? 回答1: As per the SitePoint forums, if you give the radio button a specific height/width, this will get rid of the extra space. 来源: https://stackoverflow.com/questions/6344551/how-can-i-remove-the-space-around-radio-buttons-in-ie-6

Convert HTML tag to lowercase

夙愿已清 提交于 2019-12-10 19:12:14
问题 I working on an intranet project for IE6 (i know...) and I need to output some HTML code from a div. I use $('#output').text($('#container').html()); But IE6 outputs all the code in uppercase: <TABLE border=1> <TR> <TD>Test Content</TD> </TR> </TABLE> How can I convert HTML tags to lowercase using jQuery? Would be useful to have a plugin that could recursively go trough the DOM-tree. 回答1: Try $('#output').text($('#container').html().replace(/<\/?[A-Z]+.*?>/g, function (m) { return m