Help with address book

admin

Administrator
Staff member
I have an address book where you click on a letter and then it will display all addresses with the first letter of the last name. However there are email addresses in there as well. I was wondering if there was a way to make the email addresses an active link within the textarea box when they are viewed? In other words when someone brings up a name with an email address they would be able to click on that email address to bring up their email window.

Here is a snipet of where the the addresses are held in the code.

rcrd[0] = "PDG Dave Armstrong"
+ "\r3002 Howard Ave, Billings, MT 59102"
+ "\rPhone/Fax: 406-656-9315"
+ "\remail: <!-- e --><a href="mailto:[email protected]">[email protected]</a><!-- e -->";

This would display as:

PDG Dave Armstrong
3002 Howard Ave, Billings, MT 59102
Phone/Fax: 406-656-9315
email: <!-- e --><a href="mailto:[email protected]">[email protected]</a><!-- e -->
 
Back
Top