|
Post by Wormopolis on Dec 14, 2011 16:51:47 GMT -8
I have no way of testing this...
replace
document.write(stuff);
with
if (!navigator.vendor || !navigator.vendor.match(/Apple/)) document.write(stuff);
|
|
|
Post by tunescool on Dec 14, 2011 21:04:40 GMT -8
i would rather have the code work in safari but that worked, thanks
|
|
|
Post by Wormopolis on Dec 14, 2011 22:50:40 GMT -8
I dont know what to tell you there. Browsers do things differently, and the 3 major browsers seem to like it just fine.
|
|
|
Post by Wormopolis on Dec 16, 2011 21:19:41 GMT -8
someone way smarter then me said that if Safari's popup blocker option is turned on, then the window wont open to where the drop down goes. check to see if you have popup blocker turned on for some reason.
|
|
|
Post by tunescool on Dec 17, 2011 9:41:18 GMT -8
yea, its not even funny. its nothing i turned on by choice. maybe it came like that with an update. its mac so it gets updated rite off my computer as well as software updates every week. but it works fine, except it opens a new window instead of a tab. i could have sworn i remember it working but it was a long time ago i couldnt remember. now i gotta go in 14 different boards and change the codes again. thanks for letting me know
|
|
|
Post by Wormopolis on Dec 17, 2011 16:22:59 GMT -8
I dont think there is a way to differentiate between it opening a tab and a window in javascript.. I put in an option between same page and new window though. I will look, but I dont think there is a way to control that.
|
|
|
Post by tunescool on Jan 31, 2012 13:14:40 GMT -8
can you bold the text on the drop down, or just tell me where it goes, if possible. its hard to see with my colots, and everything i else i have is bold
|
|
|
Post by Wormopolis on Jan 31, 2012 14:17:12 GMT -8
in the array, for the option title, put it in bold tags <b></b> inside the quotes
|
|
|
Post by tunescool on Jan 31, 2012 18:37:06 GMT -8
i did
thisDropdownTitle="<b>Mary Kate And Ashley Related</b>";
but its still the same
|
|
|
Post by Wormopolis on Jan 31, 2012 20:56:37 GMT -8
you want them ALL bold right?
|
|
|
Post by Wormopolis on Jan 31, 2012 20:59:10 GMT -8
stuff="<select id='"+ddid+"' style='font-weight: bold; background-color: "+thisDropdownBackgroundColor+"; color: "+thisDropdownTextColor+";' ";
add the red
|
|
|
Post by tunescool on Jan 31, 2012 22:10:20 GMT -8
all it did was change the look of the drop down, not make it bold the first was the original, the way you had the code
|
|
|
Post by Wormopolis on Jan 31, 2012 22:40:26 GMT -8
this is what you have:
stuff="<select id='"+ddid+"' style=font-weight: bold; 'background-color: "+thisDropdownBackgroundColor+"; color: "+thisDropdownTextColor+";' ";
compare that to what I had above.
|
|
|
Post by tunescool on Feb 1, 2012 4:32:37 GMT -8
i recopied the whole line and it works
|
|
|
Post by Wormopolis on Feb 1, 2012 18:30:51 GMT -8
yep, you got it.
|
|