 |
|
|
| View previous topic :: View next topic |
| Author |
Message |
iblum
Joined: 22 Aug 2005 Posts: 5
|
Posted: Fri Aug 26, 2005 7:19 pm Inserting CSS info into Javascript |
|
|
|
I would like to insert CSS info into Javascript code.
I am using Javascript to hide email address on my website, such as:
<script language=javascript>
<!--
var contact = "Comments/Suggestions"
var email = "info"
var emailHost = "netmagik.com"
document.write("<a href=" + "mail" + "to:" + email + "@" + emailHost+ ">" + contact + "</a>" + ".")
//-->
</script>
How do I make the line Comments/Suggestions look the same way as the rest of the site?
I tried to put <script language=javascript class="bottomlink">
where "bottomlink" is the class that defines the look that I want.
It doesn't work that way. |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8748 Location: Castle Pines North, CO USA
|
Posted: Sat Aug 27, 2005 5:43 am |
|
|
|
|
Try something like:
| Code: |
<span class="bottomlink">
<script language=javascript>
<!--
var contact = "Comments/Suggestions"
var email = "info"
var emailHost = "netmagik.com"
document.write("<a href=" + "mail" + "to:" + email + "@" + emailHost+ ">" + contact + "</a>" + ".")
//-->
</script>
</span> |
|
|
iblum
Joined: 22 Aug 2005 Posts: 5
|
Posted: Sat Aug 27, 2005 6:20 am |
|
|
|
| I tried it, but it didn't work. |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8748 Location: Castle Pines North, CO USA
|
Posted: Sat Aug 27, 2005 6:58 am |
|
|
|
| Post your CSS code for the bottomlink class |
|
gary.newelluk
Joined: 12 May 2005 Posts: 552 Location: Inverurie, Scotland
|
Posted: Sat Aug 27, 2005 10:33 am |
|
|
|
Do all your links follow the same style? If so do they use a class?
You can specify the class within the <a> tag as follows:
| Code: |
document.write("<a class=\"bottomlink\" href=" + "mail" + "to:" + email + "@" + emailHost+ ">" + contact + "</a>" + ".")
|
|
|
iblum
Joined: 22 Aug 2005 Posts: 5
|
Posted: Sat Aug 27, 2005 10:55 am |
|
|
|
It worked!
Thanks again for your help.
Irina |
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|
|
 |
|
|
|
|
|
|
|