Page 2 of 2

Re: Browser different on other Macs

Posted: Tue Mar 26, 2013 2:23 am
by lohill
Well, as it turns out, my testers still do not see what I see on my Mac. I even gave them a button to change the color of the backgrounds of the fields to about 5 different choices. They still see black. Interestingly enough however, if they drag through and copy my browser page, they can paste it somewhere like email and it looks perfectly fine - even with the different colors. I am at a loss as to what to do next..

Larry

Re: Browser different on other Macs

Posted: Tue Mar 26, 2013 8:34 am
by shaosean

Code: Select all

var i;
var tInput = document.getElementsByTagName('input');
for (i = 0; i < tInput.length; i++) {
   tInput[i].style.borderColor = '#000000';
   tInput[i].style.borderWidth = '1px';
}