Jan 29, 2002 #1 DKL01 Programmer Sep 14, 2000 233 US Hi, I need to display Tool Tip in my HTML page in table format like Sales Margin 10 20 I was wondering how to add tab and new line characters in Tool tip. Thanks
Hi, I need to display Tool Tip in my HTML page in table format like Sales Margin 10 20 I was wondering how to add tab and new line characters in Tool tip. Thanks
Jan 29, 2002 #2 Boomerang Programmer Mar 30, 2001 766 NL Hi DKL01, yes you can !! But unfortunately it won't work in NN4.7 (I don't know if it works in NN6) alt="Sales&#09;Margin&#13;10&#09;20" &#09; = "tab" &#10; = "LF (line feed)" but works here as a combination of LF + CR (carriage return) &#13; = normaly "CR" but works here the same as &#10; (LF + CR) So if you want to jump a line do simply &#10;&#10; or &#13;&#13; Hope this helps, Erik <!-- My sport: Boomerang throwing !! This year I will participate at the World Championships in Germany. (http://www.boomerang2002.com)!! Many Happy Returns !! --> Upvote 0 Downvote
Hi DKL01, yes you can !! But unfortunately it won't work in NN4.7 (I don't know if it works in NN6) alt="Sales&#09;Margin&#13;10&#09;20" &#09; = "tab" &#10; = "LF (line feed)" but works here as a combination of LF + CR (carriage return) &#13; = normaly "CR" but works here the same as &#10; (LF + CR) So if you want to jump a line do simply &#10;&#10; or &#13;&#13; Hope this helps, Erik <!-- My sport: Boomerang throwing !! This year I will participate at the World Championships in Germany. (http://www.boomerang2002.com)!! Many Happy Returns !! -->