Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
7answers
743 views

If your slightly strange CSS code works on all browsers on Windows, will it work on Mac and Linux?

I am testing some weird-looking CSS code that I wrote (I'm using a mix of percentages and pixel values for width of DIVs, basically). While I'm not convinced that it's right, it works perfectly on all ...
3
votes
1answer
2k views

Cross-browser solution for displaying MJPEG stream

Is there a lightweight, free, and reliable way to display MJPEG in a cross-browser environment? I'm trying to display an MJPEG stream from an Axis 2120 IP camera on a site that I'm developing, and ...
3
votes
1answer
179 views

Javascript execution order with setTimeout()

Say that I have the following code: function testA { setTimeout('testB()', 1000); doLong(); } function testB { doSomething(); } function doLong() { //takes a few seconds to do something ...
2
votes
1answer
261 views

Caching static resources on nginx and browser behaviour

I wanted to cache static resources so I set an expires header for static resources. After setting the expires header, what I notice is: Firefox and IE do not send requests to nginx for static ...
2
votes
1answer
144 views

Memory leak JQuery - all browsers

I am using jquery in my web page. I see a lot of memory leak happening and after a while the whole browser grinds to a halt. I used the sieve tool and noticed that there is a contsant increase in the ...
2
votes
2answers
156 views

Automated multiple browser testing tools

I am looking for a tool which cuts down on the effort to manually test a new site against multiple browser combinations but so far have failed to find anything suitable. The browser combinations I am ...
2
votes
4answers
85 views

have other browsers implemented conditional comments?

IE allows you to do detect which version of IE is running based on thier browsers comment conditions (I actually don't know if that is what they are called, someone can correct me if it is not). ...
2
votes
1answer
591 views

Effective maximum mailto: body lengths

There is a maximum length for the text in the &body section of a mailto: link. According to one of my co-workers, the W3C publish the limit as 256 (I don't have a link to back this up, though). ...
2
votes
3answers
2k views

Multiple versions of Safari on Windows XP?

Is there any way to run multiple versions of Safari under Windows XP? I'm interested in running Safari versions 3.1 and 4. Specifically, i want to debug this type of problem with Safari 3.1 which ...
1
vote
1answer
43 views

Within an asp.net application loading several instances of the same page within a session loads synchronously rather than async.

I have an asp.net application using the .net 3.5 framework, Telerik, and am testing it using IE8. I have recently received a requirement to allow any of the pages within the application to be loaded ...
1
vote
1answer
103 views

Navigation Dropdown Text Color doesn't work in FF and IE

I was able to get the navigation dropdown to show the letters in a different color from the background (white in this case) in Chrome browser. But when I view the same page in IE or FF, the whole ...
1
vote
3answers
268 views

HTML rendering bug in Chrome/safari - looks ok in firefox

I'm having a weird vertical spacing bug in chrome/safari that I missed when setting it up in firefox. It seems some vertical spacing rule is being ignored by one or the other. I've gone through the ...
1
vote
1answer
189 views

Googlebot getting an error

I have the following code as my index.php for my multi-language website. Each available language has a subdirectory. <?php if (isset($_POST['URL']) && strlen($_POST['URL']) == 3) { ...
1
vote
2answers
74 views

How to use Vendor Properties in Multiple Backgrounds?

I want to use multiple backgrounds in css, which are currently supported by Firefox 3.61, Chrome/Safari, supposedly Opera10.5 (doesn't run on gnu/linux). It is working fine, however i would like to ...
0
votes
1answer
20 views

Site block built with CSS first time is displayed incorrectly in Firefox and Safari

I try to replace site menu created on flash with simple menu with image and links. I do it with CSS. Background image inserts with CSS value: background: url(/image.png), and menu is just list of ...
0
votes
1answer
36 views

Test a website in multiple browsers

I would like to test a webpage in multiple browsers, in my local machine. I see that most of the online services provide screenshots, but I cant really see what happens when i click a link on the ...
0
votes
2answers
46 views

Different User Agents in the browsers

I have noticed that some browsers via a build in development feature allow you to choose different user agents. Does this mean that they change their rendering engine? Say for example, if I set ...
0
votes
4answers
305 views

Stuck to run Selenium RC script simultaneously in multiple browsers

I am working in selenium RC with Java+Junit+Eclipse. For my project I have developed script which will run in only one browser i.e Firefox through the below code.. public void setUp() throws ...
0
votes
2answers
73 views

JSON data fetching from jquery is not supported by various browsers

I have a html page in which i am taking out the data of static json file which is renamed as .js file and put up some where on a local server say 10.211.20.62:8080/case1/county_json.js i am using the ...
0
votes
0answers
171 views

jQuery Code works in Chrome, but does not work in Firefox and Safari [closed]

I wrote a bunch of jQuery code to hide items based on time and filters. I have been testing on Chrome and everything seems to work fine. However when I go to my website on Firefox or Safari my website ...
0
votes
2answers
414 views

javascript error: invalid label? what does this mean?

no worries! it looks like more text than it is ;-) so please go on reading! The Main Questions are: What does the error: invalid label mean? Where is the error in my script? now the geeky stuff ...
0
votes
1answer
111 views

Standalone IE6 gets its version from IE7 and gets the wrong CSS

I have an odd question related to how IE6 gets its version info with respect to conditional comments. So far I had been successfully using a standalone IE6 inside a custom directory, which I had ...
0
votes
3answers
66 views

Jquery Dom and functions in html body

I have <script>...</script> before my closing body tag here i have the usual $(function() { function test(){ alert("test"); } }); in my html i have input tags <input ...
-1
votes
2answers
58 views

Need a link which works depending on browser's javascript enabled/disabled

I have implemented an Alert pop-up using style-sheet and <noscript> if javascript is disabled. The pop-up has warning message and Ok button. Ok button will not work until the javascript is ...