active questions tagged cross-browser - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T17:17:23Z http://stackoverflow.com/feeds/tag/cross-browser http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1826848/jquery-javascript-setting-width-fails 0 jquery / javascript setting width fails ClearsTheScreen 2009-12-01T15:17:26Z 2009-12-01T16:28:07Z <p>Greetings!</p> <p>I have encountered this problem: Depending on numbers from I want to create a bar chart. Interestingly it works very well in IE8 set on quirks mode, but fails everywhere else. I cannot really say where the error is and I hope that someone here can help me. I am using jQuery, but using getElementById() and element.style.width = Somevalue (i.e. without jQuery) did not work either :(</p> <p>Full example is at <a href="http://pastebin.com/m197733c4" rel="nofollow">http://pastebin.com/m197733c4</a>.</p> <p>Basically:</p> <pre><code>&lt;input onChange="calculateField(1)" ...&gt; function calculateField(fieldname){ value = $("#input_" + fieldname).val(); fancyMagic(); value = 6 * value; // for testing $("#subtotal_" + fieldname).html(value); updateDiagram(); } function updateDiagram(){ // gather required into, maxwidth, maxval, etc... // fetch 'normal' bar var target = $("#animatebar_1"); var width = maxwidth * (value / maxval); // set width to proper width target.width(width); // like for avg bar var avgtarget = $("#avgbar_1"); var avgwidth = maxwidth * (averagevalue / maxval); avgtarget.width(avgwidth); } </code></pre> <p>I tried all of FF, IE8 in various settings and Opera and it simply doesn't work. The bar's width is set to zero immediately after. IE8 quirks mode works, interestingly.</p> <p>I am pretty sure it's just me being dumb, but I will appreciate help with this. I also tried to use .css() to change the size, but it did not work either.</p> <p>Thank you muchly in advance.</p> http://stackoverflow.com/questions/1825795/print-out-paging-with-css-page-break-beforealways-cross-browser-issue 1 print out paging with css | page-break-before:always; cross-browser issue! artmania 2009-12-01T12:11:06Z 2009-12-01T14:07:41Z <p>Hi friends,</p> <p>I have an issue about print paging. you can see my code below. it is not making page break for the print preview :( any idea what can be the problem?</p> <p>Appreciate helps! </p> <p><hr></p> <p>HTML Code</p> <pre><code>&lt;h1&gt;header text&lt;/h1&gt; &lt;p&gt;Lorem Ipsum jhdfb jdhbg sdfgshdbfgkjhsdbgkjhbs d sdgf&lt;/p&gt; &lt;div class="pagebreak"&gt;&lt;/div&gt; &lt;h1&gt;header text&lt;/h1&gt; &lt;p&gt;Lorem Ipsum jhdfb jdhbg sdfgshdbfgkjhsdbgkjhbs d sdgf&lt;/p&gt; &lt;div class="pagebreak"&gt;&lt;/div&gt; </code></pre> <p><hr></p> <p>CSS Code</p> <pre><code>@media screen { .pagebreak { height:10px; background:url(img/page-break.gif) 0 center repeat-x; border-top:1px dotted #999; margin-bottom:13px; } } @media print { .pagebreak { height:0; page-break-before:always; margin:0; border-top:none; } } </code></pre> <p><hr></p> <h2>SORTED!!</h2> <blockquote> <p>I moved the pagebreak class to h1, also the html tag (h1) has to be not under any other html tag :/ it was under &lt; div id="wrap"> and then I removed all tags covering h1, and it works well now! WEIRD!!</p> </blockquote> http://stackoverflow.com/questions/1689686/cross-browser-test 0 Cross browser test Alexander Corotchi 2009-11-06T19:14:09Z 2009-12-01T08:36:03Z <p>Hello,</p> <p>I use Windows OS, how can I test websites in safari (Mac OS), it's possible to test online or another way ?</p> <p>Thanks</p> http://stackoverflow.com/questions/908216/if-ie8-is-installed-how-can-i-test-ie6-and-ie7-compatibility 6 If IE8 is installed, how can I test IE6 and IE7 compatibility? Jian Lin 2009-05-25T22:06:58Z 2009-12-01T08:24:23Z <p>if IE 8 is installed "by accident" (by the Windows Update program), now the machine has IE 8. Does that mean it is safest to run 2 Virtual PCs, one with IE 6, and one with IE 7 to test our web app?</p> http://stackoverflow.com/questions/156696/which-web-browsers-natively-support-array-foreach 2 Which web browsers natively support Array.forEach() slashnick 2008-10-01T08:26:55Z 2009-11-30T23:42:30Z <p>Which browsers other than Firefox support Array.forEach()? <a href="http://developer.mozilla.org/En/Core_JavaScript_1.5_Reference:Objects:Array:forEach#Compatibility" rel="nofollow">Mozilla say it's an extension to the standard</a> and I realise it's trivial to add to the array prototype, I'm just wondering what other browsers support it?</p> http://stackoverflow.com/questions/1817441/javascript-document-execcommand-cross-browser 0 Javascript: document.execCommand cross-browser? jldupont 2009-11-30T01:22:51Z 2009-11-30T13:26:38Z <p>I just stumble on a piece of code which I never saw before (granted I can't call myself a JS expert):</p> <p><code>document.execCommand('Copy');</code></p> <p>which seems to copy the clipboard contents to the element in focus.</p> <p><strong>Q: Is this functionality available cross-browser?</strong></p> <p><hr></p> <p><strong>Edit 1</strong>: I found this interesting <a href="http://www.quirksmode.org/dom/execCommand.html" rel="nofollow">link</a>. The page shows a compatibility matrix for <code>document.execCommand</code>.</p> http://stackoverflow.com/questions/1814830/what-is-the-difference-between-browser-rendering-engine-and-user-agent 3 What is the difference between Browser , Rendering engine and user agent? Jitendra 2009-11-29T06:32:27Z 2009-11-29T14:57:08Z <p>To make cross platform and cross browser website application what is the role of user agent switcher?</p> <p><a href="https://addons.mozilla.org/en-US/firefox/addon/59" rel="nofollow">https://addons.mozilla.org/en-US/firefox/addon/59</a></p> <p><img src="https://addons.mozilla.org/en-US/firefox/images/p/19212/1245518908" alt="alt text"></p> <p>Is user agent different thing then rendering engine?</p> <p>and if some browser use same rendering engine then do we need to check on every browser or one is enough?</p> http://stackoverflow.com/questions/1815103/js-mouse-coordinates-relative-to-an-element 0 JS: mouse coordinates relative to an element David Gore 2009-11-29T09:38:31Z 2009-11-29T10:05:25Z <p>Is it cross-browser to catch the mouse coordinates relative to a div box with this:</p> <pre><code>pos_x = event.offsetX?(event.offsetX):event.pageX-document.getElementById("thebox").offsetLeft; pos_y = event.offsetY?(event.offsetY):event.pageY-document.getElementById("thebox").offsetTop; </code></pre> http://stackoverflow.com/questions/740826/web-app-to-client-interaction 0 Web app to client interaction? John Virgolino 2009-04-11T21:42:18Z 2009-11-27T18:00:03Z <p>I am designing a web app that has some information that needs to be transferred to a client side (non-browser) application (i.e. Outlook). Assuming the client side app has an API of some sort, I need for the web app to trigger the client side (based on a user clicking a link) to get the information and transfer it into the client app through it's API.</p> <p>My first thought would be to write an ActiveX control that I can pass a secure code to that then uses that information to talk back to the web app through a web service I create and then the ActiveX control can implement the interface into the client side app (i.e. Outlook). Based on what I have read, this is doable with ActiveX.</p> <p>My problem is that ActiveX won't work in Mozilla browsers or Chrome which poses a real problem as I need this to be multi-platform. I've read about NPAPI which is supposedly the equivelent native technology. I also read about plug-ins for Firefox and Chrome that supposedly support ActiveX, but they aren't native. I need to have native out of the box support so that users don't have to do anything special, just click and run. So here are my questions:</p> <p>1) Is ActiveX my only option for IE?</p> <p>2) Do I need to develop ActiveX and NPAPI to support all clients?</p> <p>3) Is there a better way to do this that I am not aware of? I am open to other technologies since the focus is on a seamless user experience.</p> <p>Thanks for any insight!</p> http://stackoverflow.com/questions/1806276/why-doesnt-my-javascript-xml-processing-code-work-in-safari 1 Why doesn't my JavaScript XML processing code work in Safari? pepelucaz 2009-11-27T00:34:39Z 2009-11-27T07:09:26Z <p>I use the following code to open an XML document. It works in Firefox and IE, but fails in Safari. Any idea why?</p> <pre><code>function crearObjetoXML(archivoXML){ //--- IE. if(window.ActiveXObject){ xmlDoc = new ActiveXObject("Microsoft.XMLDOM"); xmlDoc.async="false"; xmlDoc.load(archivoXML); parsearXML(); //--- FF. }else if(document.implementation &amp;&amp; document.implementation.createDocument){ xmlDoc = document.implementation.createDocument("","",null); xmlDoc.load(archivoXML); xmlDoc.onload = parsearXML; }else{ alert ('Su navegador no puede soportar este script'); } } function parsearXML(){ numrows = xmlDoc.getElementsByTagName('advertise')[0].childNodes.length; lnks1 = new Array(numrows); for (var i=0;i&lt;=numrows-1;i++) { lnks1[i] = xmlDoc.getElementsByTagName('advertise')[0].getElementsByTagName('item')[i].getAttribute('link'); } } crearObjetoXML('../imagerotatorxml.php'); </code></pre> http://stackoverflow.com/questions/1752471/ie8-focus-pseudo-class-and-sibling-selector 0 IE8 focus pseudo class and Sibling Selector Matthew M. Osborn 2009-11-17T22:58:08Z 2009-11-26T05:33:13Z <p>I have some mark up and I am trying to have the "hints for some input" light up when the accosicated text input has focus. I am trying to use the focus pseudo class along with a sibling selector. If i just use one or the other it works just fine. However, when combining them in IE8 it apears as if that style doesn't get updated when you tab through the textboxes. NOTE: that if you click away from the textbox and back they style is updated.</p> <p>Here is the markup: </p> <p><hr></p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt; &lt;head runat="server"&gt; &lt;title&gt;Untitled Page&lt;/title&gt; &lt;style type="text/css"&gt; html { font-family: Arial; } .lineItem {padding:5px; clear:both; } .label { display:block; font-size:large; color: #2C2F36; font-weight:bold; padding:5px 0px 3px 0px; } .textbox:focus { background-color: #FFFFBF; } .textbox { font-size: large; color: #2C2F36; width:300px; background-color: #FFFFE8; padding:3px 5px; border:solid 2px #cecece; float:left; } .hint { margin-left:10px; width:175px; font-size:smaller; display:block; float:left; color: #466E62; } .textbox:focus+.hint {color: Red; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;form id="form1" runat="server"&gt; &lt;div&gt; &lt;div class="lineItem"&gt; &lt;label for="ListName" class="label"&gt;List Name&lt;/label&gt; &lt;input id="Name" name="ListName" type="text" class="textbox" /&gt; &lt;span class="hint" id="NameHint"&gt;This is the title of your List.&lt;/span&gt; &lt;/div&gt; &lt;div class="lineItem"&gt; &lt;label for="ListSlug" class="label"&gt;http://List/Username/&lt;/label&gt; &lt;input id="Slug" name="ListSlug" type="text" class="textbox" /&gt; &lt;span class="hint" id="SlugHint"&gt;The URL that you will use to share your list with others.&lt;/span&gt; &lt;/div&gt; &lt;/div&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Here is a screenshot of what I'm seeing:</p> <p><hr></p> <p><img src="http://www.osbornm.com/pics/IE8Issue.png" alt="Screenshot"></p> <p><strong>NOTE: Works in other browsers :( and other pseudo classes such as hover work</strong></p> http://stackoverflow.com/questions/1801142/neon-glow-effect-in-ie8 1 neon-glow effect in IE8 hasen j 2009-11-26T01:48:23Z 2009-11-26T01:55:51Z <p>The following css creates a nice neon-glow effect around text</p> <pre><code>{ text-shadow: 0em 0em 0.3em white; /* assuming a dark background */ } </code></pre> <p>However it doesn't work in IE7/8</p> <p>For a reference, compare <a href="http://www.w3.org/Style/Examples/007/text-shadow" rel="nofollow">this page</a> in Firefox and IE </p> <p>Is there a way to get a similar effect in it?</p> http://stackoverflow.com/questions/1791068/does-firefox-add-any-proprietary-values-when-i-add-a-border-like-ie-does-with-ha 0 Does Firefox add any proprietary values when I add a border (like IE does with hasLayout)? Kid A 2009-11-24T16:07:27Z 2009-11-24T16:24:05Z <p>I have a doosie of a layout problem that looks like a browser bug.</p> <p>It manifests only in FF3 (haven't tested ff2).</p> <p>It only shows up on the first load of the page. If I resize the window it behaves properly.</p> <p>It goes away when I put a border on the problem element, and comes back when I take the border off.</p> <p>No other properties change.</p> <p>Here is an image of the problem: <img src="http://i255.photobucket.com/albums/hh131/NashvilEric/ffMagicBorderFix.png" alt="footer width problem"></p> <p>Firebug's DOM inspector thinks that the footer spans the whole width in both cases. It seems like it's only the text-align:center that's not correctly respecting the full width. *Update: taking off text-align:center does not solve it. The text runs flush up against the left side of the screen (correct) or the purple box (incorrect).</p> <p>The 1px purple border you can see in the screen is #centerHolder, the child of a different element and should not affect the layout of the footer, though it clearly does. *Update: Shrinking the height of the purple box to 85%, where it couldn't possibly be in the way, doesn't change the problem at all. The text still thinks the purple box is in the way.</p> <p>Thanks for your comments and ideas.</p> <p>HTML:</p> <pre><code>&lt;div id="container"&gt; &lt;div id="centerHolder"&gt;&lt;/div&gt; &lt;/div&gt; &lt;p id="footer"&gt; Copyright ©2009 Lala Corporation &lt;a class="link" onclick="ContactUs_OnClick(); return false;" href="#"&gt;Contact Us&lt;/a&gt; &lt;/p&gt; </code></pre> <p>CSS:</p> <pre><code>#container{ position:relative; height:96%; min-height:600px; width:100%; min-width:975px; max-width:1300px; margin:0 auto; z-index:2; } #centerHolder { float:left; margin-left:245px; width:10%; z-index:1000; } #footer { border:1px solid green; margin:0; padding-top:5px; position:relative; text-align:center; z-index:1; } </code></pre> http://stackoverflow.com/questions/1789040/browsers-issues 0 Browsers issues francesco 2009-11-24T09:51:39Z 2009-11-24T09:55:24Z <p>Hi guys,</p> <p>I am having a cross browser problem with IE 7 and I have decided to go for a different style sheet for it. Could you please advise me what is the best way to call IE7 when used? And keep of course the other one for all the other browser. Many thanks Francesco</p> http://stackoverflow.com/questions/1788475/popup-and-change-location-at-the-same-time 0 Popup and change location at the same time... Salvin Francis 2009-11-24T07:40:00Z 2009-11-24T07:55:11Z <p>Basically here is my code (Authenticator.jsp):</p> <pre><code>window.location.replace("Login.html"); // replace method also takes care of history window.open ("Main.html", "Welcome logged in user"); </code></pre> <p>Expected behaviour:</p> <ol> <li>We basically open the Main.html in a popup once a user has logged in.</li> <li>The current window must point to Login.html and main should open in a popup.</li> </ol> <p>Actual behaviour:</p> <ol> <li>Main.html is opened in a popup</li> <li>Authenticator.jsp switches back to Login.html, <strong>BUT this Window gets focus !! and is shown in Front of my popup !!</strong></li> </ol> <p>Is there a solution for this ? This behaviour occurs in IE6 (I havent checked IE7 and IE8), it does not occur in Firefox and chrome</p> http://stackoverflow.com/questions/1783916/what-is-the-best-service-for-cross-browser-screen-shots 0 What is the best service for cross-browser screen shots? samg 2009-11-23T15:37:37Z 2009-11-23T15:47:10Z <p>I have a website that I'd like to monitor for display problems in various browsers (mainly Internet Explorer.) I know that browsercam.com and broswershots.org provide this as a service. Could anyone recommend the best way/service to do this?</p> http://stackoverflow.com/questions/1781199/images-from-database-loading-glitchy 0 Images from Database Loading Glitchy JAKEtheJAB 2009-11-23T05:08:23Z 2009-11-23T13:18:33Z <p>I'm getting weird issues with ie and firefox when showing image datatypes stored in a sql server 2008 database. Before the images are finished loading/caching there are white lines that flash upwards through them. It is not how images normally load in firefox or ie, any ideas?</p> http://stackoverflow.com/questions/1540003/css-problem-absolutely-positioned-parent-and-floatright-child-stretches 11 css problem: Absolutely positioned parent and float:right child stretches Roatin Marth 2009-10-08T19:44:28Z 2009-11-22T06:12:15Z <p>In IE6, IE7 and FF2 the <code>.outer</code> div below is stretching out to the right edge of the document. Here is a complete test case:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;style&gt; .outer { position:absolute; border:1px solid red; } .outer .floater { float:right; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div class="outer"&gt; &lt;div class="floater"&gt;Lorem ipsum&lt;/div&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> <p>As I understand <code>position:absolute</code>, the outer div should be removed from the flow of the document and (without a width specified) <em>should</em> take up the minimal amount of space needed to display its contents. However <code>float:right</code> on any child breaks this.</p> <p>Expected output (IE8, FF3+, Chrome 2+, Safari 4, Opera 9+):</p> <p><img src="http://img195.imageshack.us/img195/5761/expected.gif" alt="Expected output - IE8, FF3+, Chrome 2+, Safari 4, Opera 9+"></p> <p>Actual output (IE6, IE7, FF2):</p> <p><img src="http://img195.imageshack.us/img195/8290/actualj.gif" alt="Actual output - IE6, IE7, FF2"></p> <p><strong>How do I get the outer div to not stretch?</strong> This is only happening in IE6, IE7 and Firefox 2.</p> <p>Requirements:</p> <ul> <li><code>.outer</code> cannot have a <code>width</code> set (it <em>must</em> be left as <code>"auto"</code>)</li> <li><code>.outer</code> must remain absolutely positioned</li> <li><code>.floater</code> must remain floated to the right</li> </ul> <p><hr></p> <p><strong>Update</strong>:</p> <p>I've reproduced the behavior as a "real world" example using jQuery dialog. The characteristics are the same:</p> <ol> <li>There is an absolutely positioned div (i.e. the dialog container, jQuery-UI creates this)</li> <li>The div from 1) has <code>width="auto"</code></li> <li>There is an element inside this dialog that is floated to the right.</li> </ol> <p><a href="http://jsbin.com/iguxe" rel="nofollow"><strong>See it here</strong></a>. Again, IE6, IE7 and FF2 are the only problematic browsers.</p> <p>This replicates the conditions inside my application. I tried boiling down the problem to what you see above this Update, but I'm getting the sense that people could use a real-world example where my requirements make sense. I hope I've done this.</p> http://stackoverflow.com/questions/1757229/heightened-privilege-selenium-browsers-on-windows-7-x64 0 Heightened privilege selenium browsers on Windows 7 (x64) BenA 2009-11-18T16:25:48Z 2009-11-21T15:21:27Z <p>I make use of *firefox and *iexplore etc. within my selenium tests to get around the issue of self-signed SSL certificates on my local machine. Unfortunately, now that I've moved from XP over to 7, this seems to have stopped working.</p> <p>I'm running the selenium RC server process as administrator, since that was necessary to get an IE instance to launch properly.</p> <p>I've tried adding permanent security exceptions for the certificate in question, and have confirmed that this works when I myself launch a browser session. But when a browser session is instantiated by the Selenium RC, I'm still receiving the security warnings.</p> <p>I've also tried specifying the 32bit version of IE, in case it was just the 64bit version that wasn't working, but both exhibit the same behaviour.</p> <p>I've also tried temporarily disabled UAC, in case I was falling foul of a permissions/elevation problem, but that also did not help. </p> <p>Has anybody managed to get the heightened privilege browsers working properly on Windows 7? Alternatively, does anybody know a way that I can get around this issue? (short of not using https!)</p> <p>Thanks!</p> http://stackoverflow.com/questions/1766861/find-the-exact-height-and-width-of-the-viewport-in-a-cross-browser-way-no-protot 1 Find the exact height and width of the viewport in a cross-browser way (no Prototype/jQuery) lyoshenka 2009-11-19T21:57:45Z 2009-11-21T12:22:49Z <p>I'm trying to find the exact height and width of a browser's viewport, but I suspect that either Mozilla or IE is giving me the wrong number. Here's my method for height:</p> <pre><code>var viewportHeight = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight; </code></pre> <p>I haven't started on width yet but I'm guessing it's going to be something similar.</p> <p>Is there a more correct way of getting this information? Ideally, I'd like the solution to work with Safari/Chrome/other browsers as well.</p> http://stackoverflow.com/questions/1774382/how-do-i-find-out-the-size-of-a-browser-application-window-including-the-border 0 How do I find out the size of a browser application window including the border, header and footer? Beau Simensen 2009-11-21T03:18:45Z 2009-11-21T03:44:52Z <p>I am looking to create a fullsize window using javascript but I am having difficulties trying to take the actual size of the window into account. I can get the resolution of the desktop but if I set the windows width and height to that value, it is not 100% correct as it does not seem to be taking into account the size of the border for the browser application itself. How can I calculate my target width and height to take the browsers application border into account?</p> http://stackoverflow.com/questions/1773015/ie-6-7-and-8compatibility-mode-issues 0 Ie 6, 7 and 8(Compatibility mode) issues mamu 2009-11-20T20:23:06Z 2009-11-20T21:10:07Z <p>We have a site that works fine with any latest browser including ie8.</p> <p>But it has lots of issues with ie6, ie7 and ie8(Compatibility mode).</p> <p>We are using following doctype </p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; </code></pre> <p>So it is not using quirck mode.</p> <p>Before i start digging into individual issues, just want to known if i am missing something or doing something wrong to go ie in some different mode other than standard?</p> <p>I tried to find list of known issues with ie6 and ie7 when using w3c standards but didn't find much useful, but found just enough to confuse me. </p> <p>Any known site where i can find known issues with old ie's when using w3c standards?</p> http://stackoverflow.com/questions/1694544/cross-browser-development 5 Cross-browser development Scarlet 2009-11-07T21:49:56Z 2009-11-20T11:40:28Z <p>Hi all,</p> <p>I'm developing a web application for a new service, starting from Firefox 3.5.</p> <p>The interface design is tableless, only using divs + CSS &amp; performance-blessed practices.</p> <p>Now, while being compatible with Safari has taken just a small amount of time, IE is a pain.</p> <p>My question is: is there anything out there that could be used to speedup cross-browser checking? I already know many points of difference between FF and IE for instance, but a specific tool would maybe help some more.</p> <p>Could you suggest one, if any?</p> <p>Thanks,</p> <p>Scarlet</p> http://stackoverflow.com/questions/1767375/ie7-display-problem-with-parent-child-background-images 1 IE7 Display problem with parent & child background images bkorte 2009-11-19T23:37:18Z 2009-11-20T08:02:38Z <p>I'm having a problem with IE7 displaying a table (don't worry it's used for tabular data) where the table row has a background image which repeats on the x-axis and the table division (in this case a TH) has seperate background image, which doesnt repeat at all.</p> <p>Here's an example:</p> <p><img src="http://cdn.bkit.ca/misc/juniors-table-problem.png"></p> <p>Here's the CSS:</p> <pre><code>&lt;style&gt; table, td, th, tr { border: none; } table tr { border-bottom: 1px solid #BEBEBE; } table td { padding: 7px; border-left: 1px solid #BEBEBE; border-right: 1px solid #BEBEBE; } table th { padding: 7px; text-align: left; } table .header { background-image: url(/images/layout/nav_background.png); background-position: top; background-repeat: repeat-x; height: 37px; border: none; margin: 2px; } table .header th { color: white; font-weight: normal; text-align: center; } table .header th.first { background-color: transparent; background-image: url(/images/layout/nav_left.png); background-repeat: no-repeat; background-position: top left; } table .header th.last { background-image: url(/images/layout/nav_right.png); background-repeat: no-repeat; background-position: top right; background-color: transparent; } &lt;/style&gt; </code></pre> <p>And here's the HTML:</p> <pre><code>&lt;table&gt; &lt;tr class="header"&gt; &lt;th class="first"&gt;a&lt;/th&gt; &lt;th&gt;b&lt;/th&gt; &lt;th class="last"&gt;a&lt;/th&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>Please don't chastise my CSS, some of it is "spray and pray" CSS hoping something fixes it.</p> <p>So I can't for the life of me figure out why I have this problem. IE8 Doesnt have this same issue.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1578186/how-to-have-2-adjacents-blocks-without-displayinline-block 0 How to have 2 adjacents blocks without display:inline-block? fabien7474 2009-10-16T13:53:07Z 2009-11-19T23:09:31Z <p>I have been spending hours on that...with no success.</p> <p>Since inline-block is not well-supported by IE6&amp;7, I wanted to know if it is possible to have the same render using other attributes given by the following code :</p> <pre><code>&lt;html&gt;&lt;head&gt; &lt;style type="text/css"&gt; .img { float: left; width:17px; height:15px; display:block; background-color: #FD3; border-style:solid; } .txt { float: left; } .parent { display: inline-block } &lt;/style&gt;&lt;/head&gt;&lt;body&gt; Follow Me &lt;div class="parent "&gt; &lt;div class="img"&gt;&lt;/div&gt; &lt;div class="img"&gt;&lt;/div&gt; &lt;div class="txt"&gt;(a comment)&lt;/div&gt; &lt;/div&gt;&lt;/body&gt;&lt;/html&gt; </code></pre> <p>Careful : I cannot add/change the container of "Follow me" (using for instance a <code>float:left</code>). I can control ONLY what is inside the div "parent" (and the div "parent" itself)</p> <p>Do you have a workaround?</p> <p>Thx</p> http://stackoverflow.com/questions/1765490/contents-of-iframe-disappears-after-inserting-it-using-jquery-append 0 Contents of iframe disappears after inserting it using jQuery.append Andrey 2009-11-19T18:25:26Z 2009-11-19T20:35:17Z <p>Hi, </p> <p>Please consider this code:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;&lt;/title&gt; &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"&gt;&lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="dlgDiv" style="width:202px; height:72px; border: solid 1px grey"&gt;&lt;/div&gt; &lt;iframe id="iView" style="width: 200px; height:70px; border: dotted 1px red" frameborder="0"&gt;&lt;/iframe&gt; &lt;script type="text/javascript"&gt; jQuery(document).ready(function() { var doc = document.getElementById("iView").contentWindow.document; doc.designMode = "On" doc.open() doc.write("&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body class='some-class'&gt;Some test text&lt;/body&gt;&lt;/html&gt;"); doc.close(); jQuery("#iView").appendTo("#dlgDiv") }) &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>In IE it works fine and preserves test in the frame ("Some test text") as well as it keeps it in design mode. In FF/Chrome/Opera it wipes out all content of the iframe - if you inspect it's DOM with FireBug you can see that iframe.body lost it's class "some-class" as well as all text and it's not in design mode. Any ideas how to overcome this problem? The original problem is that all rich text editors fail to work in a jQuery.dialog in those browsers and I tracked the problem down to the above-mentioned fact...</p> <p>It's a real show stopper for me, any help would he highly appreciated!</p> <p>Thank you, Andrey</p> http://stackoverflow.com/questions/1764530/windows-7-rendering-web-pages-differently-than-xp-or-vista 3 Windows 7 rendering web pages differently than XP or Vista Alex 2009-11-19T16:19:06Z 2009-11-19T16:42:21Z <p>Since switching to Windows 7, we've noticed that several of our web pages have slight differences. It mostly shows when looking at form elements (text inputs &amp; submit buttons). They are slightly larger/smaller by a few pixels. This seems to be browser independent - we get the same rendering issues using IE8, FF3.5, and Chrome in Windows 7. When switching to the same browser in a Windows Vista environment, the issue disappears.</p> <p>What's going on? Why would an OS affect HTML/CSS elements? Am I missing something very obvious here or is something strange going on?</p> <p>Here's a specific example:</p> <p><strong>HTML:</strong></p> <pre><code>&lt;input id="input-search" type="text" name="thesearch" value="" /&gt; &lt;button id="btn-search" type="submit" name="search"&gt;Search&lt;/button&gt; </code></pre> <p><strong>CSS:</strong></p> <pre><code>#input-search { float:left; font-size:18px; color:#5b5b5b; margin:2px 4px 0 0; width:200px; } #btn-search { background:url(/images/btn_search.png) no-repeat top left transparent; padding:5px 0px 6px 20px; } </code></pre> http://stackoverflow.com/questions/1759820/functional-requirements-for-the-ultimate-web-development-framework 0 Functional Requirements for the ultimate web development framework? Ryan Delucchi 2009-11-18T23:16:14Z 2009-11-19T01:08:15Z <p>With the wide variety of web development frameworks that are available, there always seems to be a perpetual incentive to "try something new". Hence, some of us find ourselves trading one framework for another, never being <em>entirely</em> satisfied with the end results. Granted there will always be niches where a given web framework will serve perfectly. But, there are many who have settled on using C++, Java or C# for building, say, desktop applications. The same isn't quite true when it comes to web development applications. Joel Spolsky touches on this in <a href="http://www.joelonsoftware.com/items/2007/09/18.html" rel="nofollow">link text</a>.</p> <p>Let's say if I were to build such a framework: what would the functional requirements be? The goal here is to list <strong>concrete</strong> functional expectations (defined succinctly for the sake of a stackoverflow posting, of course). The best answer will be chosen based on its number of votes.</p> <p>Just to get everyone started, the following would is a partial list of requirements. Note, these items were intentionally left somewhat abstract with the intent that folks can derive more concrete items from them:</p> <ul> <li><p><strong>OOP Consistency: Seamless data exchange and native object representation between server-side and client-side modules</strong>: That is, given a function on the client-side: <code>clientFoo()</code> and a function on the server-side: <code>serverFoo()</code> one should be able to pass an object <code>obj</code> of any type <code>T</code> without requiring any marshalling:</p> <p>define clientFoo() { T obj = createObject() serverFoo(obj) }</p> <p>OR</p> <p>define serverFoo() { T obj = createObject() clientFoo(obj) }</p></li> </ul> <p>This adds the requirement that native object representations must be the same on both the client and server side, including all composition, inter-class coupling, and encapsulation semantics. Basically, it should be entirely irrelevant whether a given class or a given instance resides on the client-side or the server-side. </p> <ul> <li><p><strong>Functional Consistency: Seamless functional and thread execution</strong>: One should be able to create a function on the client/server side and pass it over the boundary for execution. This includes uniform support for multi-threading (which should work consistently on both the client and server sides).</p> <ul> <li><p><strong>Multiple Application Session Interoperability</strong>: A perfect example here is inter-application "cut and paste" (as mentioned in the article pointed out above). I am <em>not</em> talking about trivial copying of text within the browser to another browser instance (or tab). What if one wants to paste say, a contact object in MySocialApp to YetAnotherSocialApp? This kind of inter-application data exchange is important.</p></li> <li><p><strong>Consistent cross-Browser compatible UI</strong>: creating AJAX "dialog boxes", progress indicators, tabs, etc should all be achievable using an API that is as seamless with the rest of the framework as the client/server integration discussed above. Oh, and yes, it has to work the same on all browsers (with browser distinctions being completely invisible to the developer).</p></li> </ul></li> </ul> <p>Note: Just marked as community WIKI.</p> http://stackoverflow.com/questions/165779/are-the-put-delete-head-etc-methods-available-in-most-web-browsers 11 Are the PUT, DELETE, HEAD, etc methods available in most web browsers? John Millikin 2008-10-03T05:26:59Z 2009-11-18T16:32:16Z <p>I've seen a couple questions around here like <a href="http://stackoverflow.com/questions/165720/how-to-debug-restful-services">How to debug RESTful services</a>, which mentions:</p> <blockquote> <p>Unfortunately that same browser won't allow me to test HTTP PUT, DELETE, and to a certain degree even HTTP POST.</p> </blockquote> <p>I've also heard this, that browsers support only GET and POST, from some other sources like:</p> <ul> <li><a href="http://www.packetizer.com/ws/rest.html" rel="nofollow">http://www.packetizer.com/ws/rest.html</a></li> <li><a href="http://www.mail-archive.com/jmeter-user@jakarta.apache.org/msg13518.html" rel="nofollow">http://www.mail-archive.com/jmeter-user@jakarta.apache.org/msg13518.html</a></li> <li><a href="http://www.xml.com/cs/user/view/cs_msg/1098" rel="nofollow">http://www.xml.com/cs/user/view/cs_msg/1098</a></li> </ul> <p>However, a few quick tests in Firefox show that sending <code>PUT</code> and <code>DELETE</code> requests works as expected -- the <code>XMLHttpRequest</code> completes successfully, and the request shows up in the server logs with the right method. Is there some aspect to this I'm missing, such as cross-browser compatibility or non-obvious limitations?</p> http://stackoverflow.com/questions/1744310/how-to-fix-array-indexof-in-javascript-for-ie-browsers 1 How to fix Array indexOf() in JavaScript for IE browsers Bobby Borszich 2009-11-16T19:27:28Z 2009-11-17T20:59:40Z <p>If you have worked with JavaScript at any length you are aware that IE does not implement the ECMAScript function for Array.prototype.indexOf() [including IE8]. Not a huge problem because you can extend the functionality on your page with the following code. </p> <pre><code>Array.prototype.indexOf = function(obj, start) { for (var i = (start || 0), j = this.length; i &lt; j; i++) { if (this[i] == obj) { return i; } } return -1; } </code></pre> <p>What I am looking for is when should I implement this? </p> <p>should I wrap it on all my pages with the following check, which checks if the prototype function exists and if not go ahead and extend the Array prototype?</p> <pre><code>if (!Array.prototype.indexOf) { //implement function here } </code></pre> <p>or do browser check and if IE then just implement it?</p> <pre><code>//pseudo-code if(browser == IE Style Browser) { // implement function here } </code></pre>