Questions tagged [multiple-browsers]
54 questions
0
votes
1 answer
How Change DropDown style and make it same in different browsers?
I want to make the style of drop-down list same on different browser,
first I have remove the default style of arrow
select {
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
}
select::-ms-expand {
display:…

Duha
- 811
- 1
- 12
- 26
0
votes
0 answers
parallel_tests - Ruby multiple browser testing
So far I have tried running multiple scenarios using parallel_tests and they are working fine. But the problem with this approach is I need to run multiple times with different browser parameter and I think that this is not a good practice.
Right…

Sunilkumar V
- 912
- 2
- 8
- 28
0
votes
3 answers
Jquery Dom and functions in html body
I have before my closing body tag here i have the usual
$(function() {
function test(){
alert("test");
}
});
in my html i have input tags
I get an error of that test is…

cloudstrife
- 105
- 1
- 1
- 7
0
votes
2 answers
How can I make my site look the same on different browsers?
I'm pretty new to this stuff; all I know is enough CSS and HTML to make a site look good so if you're kind enough to answer, please be kind enough to say something I can understand :)
I've looked up "How to make a site look the same in any browser"…

rogers2992
- 1
- 1
0
votes
1 answer
html- can you change the end tag?
Do all browsers support using different end tags?
For example:
hello
orhello

Eran Shmuel
- 149
- 2
- 15
0
votes
2 answers
Synchronize Javascript Timer
I am working on an app that has a javascript interval timer. I would like the timer to run on a server then I would like to grab that time on multiple devices on click.
Ex: Countdown Timer to be displayed on a large screen in a gym (this is coming…

John Kozar
- 1
- 1
0
votes
1 answer
.js file being blocked by all browsers
I am working my way through the following tutorial and everything works great except for one significant detail: When I test the page in any browser I get a warning message that content unsecure content is being blocked. Once I acknowledge the…

Milo
- 1
- 1
0
votes
2 answers
onkeypress in Internet Explorer calls all the functions related to keypress on a webpage
I have two textbox and two buttons on a webpage.
Each textbox has its own keypress function which checks for the return key and calls a particular javascript function.
But the problem is if I start typing on any text box and hit return both the…

nitin
- 571
- 1
- 4
- 16
0
votes
1 answer
Javascript "ended" function works erratically
Set up simple code for an audio playlist of two mp3's and tested in JSFiddle...seemed to be working, but on upload, only plays the first clip in Chrome and Safari, and plays nothing at all in Opera and Firefox. I'm using both mp3's and ogg's so…

Lady J
- 1