Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

JavaScript Forum


You are currently viewing our JavaScript Forum as a guest. Please register to participate.
Login



Reply
getElementsByTagName - erm????
Old 05-10-2008, 06:26 PM getElementsByTagName - erm????
coldturkey's Avatar
Extreme Talker

Posts: 211
Name: Rachel
Location: Spain
Trades: 3
Hi,
I have added a increse font size script but i cant to edit it correctly.
This is part of the script, at the moment it just changes what in <p>. But i want to add <ul> tags as well.
Code:
function increaseFontSize() {
   var p = document.getElementsByTagName('p');
So i tried this
Code:
function increaseFontSize() {
   var p = document.getElementsByTagName('p','ul');
and a few other ways but its not working... how do I add a new tag in there??

Hope some one can help

Rachel
__________________

Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE

coldturkey is offline
Reply With Quote
View Public Profile Visit coldturkey's homepage!
 
 
Register now for full access!
Old 05-10-2008, 07:28 PM Re: getElementsByTagName - erm????
tripy's Avatar
Do not try this at home!

Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
Trades: 0
you cannot.
You have to make 2 distincts arrays
Code:
function increaseFontSize(){
  var p=document.getElementsByTagName('p');
  var u=document.getElementsByTagName('ul');
  //... do your stuff on ever arrays
__________________
Only a biker knows why a dog sticks his head out the window.
tripy is offline
Reply With Quote
View Public Profile Visit tripy's homepage!
 
Reply     « Reply to getElementsByTagName - erm????
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.14360 seconds with 12 queries