473,473 Members | 2,111 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Turn CSS listing into JavaScript Array?

I have this in a style sheet:

div.track { font-family: Verdana, Arial, Helvetica, sans-serif; }

In a JavaScript function I can pull out Verdana, Arial, Helvetica, sans-serif putting it
into a JavaScript variable fontfamily.

But what I would prefer is an array fontfamily[] where each font-family is an element
of the array.

I tried

var fontfamily = new Array(getComputedStyleForElement(document.getEleme ntById('divTrack'),'fontFamily'));

but no dice. This is a one element Array with

fontfamily[0] = Verdana, Arial, Helvetica, sans-serif

What I was hoping for was:

fontfamily[0] = Verdana
fontfamily[1] = Arial
fontfamily[2] = Helvetica
fontfamily[3] = sans-serif

Any neat ideas how I might do this?
Thanks.

--
George Hester
__________________________________
Jul 23 '05 #1
2 1536


George Hester wrote:
I have this in a style sheet:

div.track { font-family: Verdana, Arial, Helvetica, sans-serif; }

In a JavaScript function I can pull out Verdana, Arial, Helvetica, sans-serif putting it
into a JavaScript variable fontfamily.

But what I would prefer is an array fontfamily[] where each font-family is an element
of the array.


If you have a string you can split it into an array e.g.

var fonts = 'Verdana, Arial, Helvetica, sans-serif';
var fontsArray = fonts.split(/, /g);

--

Martin Honnen
http://JavaScript.FAQTs.com/
Jul 23 '05 #2
cool I knew there was something like that just couldn't recall it. Thanks.

--
George Hester
__________________________________
"Martin Honnen" <ma*******@yahoo.de> wrote in message news:41***********************@newsread4.arcor-online.net...


George Hester wrote:
I have this in a style sheet:

div.track { font-family: Verdana, Arial, Helvetica, sans-serif; }

In a JavaScript function I can pull out Verdana, Arial, Helvetica, sans-serif putting it
into a JavaScript variable fontfamily.

But what I would prefer is an array fontfamily[] where each font-family is an element
of the array.


If you have a string you can split it into an array e.g.

var fonts = 'Verdana, Arial, Helvetica, sans-serif';
var fontsArray = fonts.split(/, /g);

--

Martin Honnen
http://JavaScript.FAQTs.com/

Jul 23 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: PhilM | last post by:
New to javascript. Is it possible to use javascript to scan a directory client side. If so, could someone point me in the general direction of information on how to. I do not know what keywords I...
9
by: Gary | last post by:
Hello, Is it possible to dynamically update a textbox with words chosen from a list using form checkboxes and javascript? Gary
4
by: JesusFreak | last post by:
From: us_traveller@yahoo.com (JesusFreak) Newsgroups: microsoft.public.scripting.jscript Subject: toolbar script problem NNTP-Posting-Host: 192.92.126.136 Recently, I downloaded the following...
5
by: - CT - | last post by:
Is it possible to use javascript to get a list of files from the current directory where the html page that contains the javascript is being called? The reason is that I want to find all ".jpg"...
104
by: Leszek | last post by:
Hi. Is it possible in javascript to operate on an array without knowing how mamy elements it has? What i want to do is sending an array to a script, and this script should add all values from...
8
by: dougawells | last post by:
Hi - I'm hoping for help with the auto-generation of a hyperlinked listing of all files in a directory. The server I use does not auto-generate this. So, when someone comes to this directory and...
7
by: epikto | last post by:
I have a mapped share that I am trying to get a listing of all the files that it contains. I use the following code to access the contents String files = Directory.GetFiles(path); I can then...
2
by: javamama | last post by:
Hi, I programmed a web page where two parallel maps can be explored with moving the cursor on the summer and winter buttons. The active button should turn red but now the right hand buttons turn...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.