<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1041323" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1041323</link>
    <description></description>
    <language>en</language>
          <item>
    <title>yes, that is what I meant
on</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/highlight-links-current-page-css#comment-1230848</link>
    <description> &lt;p&gt;yes, that is what I meant&lt;/p&gt;
&lt;p&gt;on that subject.. users being confused...I go nuts when I see a mailto: href email link&lt;/p&gt;
&lt;p&gt;On about 85% of peoples&#039; computers (isn&#039;t that about the Windows % ?) it will pop open Outlook which they probably never set up and then they are staring at it - and if they try to set it up they will just get frustrated, unless they figure out they can use their cable/fios isp email, but &lt;em&gt;&lt;strong&gt;really&lt;/strong&gt;&lt;/em&gt;, we all know who we&#039;re dealing with here, right?&lt;/p&gt;
&lt;p&gt;Meanwhile, they forget why they wanted to contact you: You just lost a client/sale/headache whatever-&lt;/p&gt;
&lt;p&gt;so I advise/use contact forms whenever possible - it&#039;s so easy to set up the php mail() function... or some kind of SMTP cgi&lt;/p&gt;
&lt;p&gt;besides, putting your email address in text on the page is going to get you a lot of spam (yeh I know about ways of concealing - but if you&#039;re doing that, why not put in a contact form?)&lt;/p&gt;
 </description>
     <pubDate>Sat, 21 Jun 2008 20:03:02 +0000</pubDate>
 <dc:creator>netsperience</dc:creator>
 <guid isPermaLink="false">comment 1230848 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>netsperience wrote:
(I</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/highlight-links-current-page-css#comment-1230839</link>
    <description> &lt;p&gt;&lt;div class=&quot;quote-msg&quot;&gt;&lt;div class=&quot;quote-author&quot;&gt;&lt;em&gt;netsperience&lt;/em&gt; wrote:&lt;/div&gt;(I assume that is main reason we are dealing with self-links to avoid an unnecessary reload)&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;Oh, I didn&#039;t even explain that, did I? Maybe I&#039;ll edit the article to fix that.&lt;/p&gt;
&lt;p&gt;It&#039;s really a problem with people being confused when they click on a link and it takes them to the same page they&#039;re on.&lt;/p&gt;
 </description>
     <pubDate>Sat, 21 Jun 2008 14:01:37 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1230839 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>My preference: Replace the</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/highlight-links-current-page-css#comment-1230834</link>
    <description> &lt;p&gt;My preference: Replace the link tag with &amp;lt;strong&amp;gt; -- this even works with CSS off. (Netscape 4 users get unstyled pages from me. And, yes, Emily, the local school district still uses NS4... even tho&#039; it&#039;s near Silicon Valley.)&lt;/p&gt;
&lt;p&gt;Nice summary of the pros and cons of other techniques though. Thank you.&lt;/p&gt;
 </description>
     <pubDate>Fri, 20 Jun 2008 23:25:32 +0000</pubDate>
 <dc:creator>webwiz</dc:creator>
 <guid isPermaLink="false">comment 1230834 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>3 more ideas


Drupal has</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/highlight-links-current-page-css#comment-1230833</link>
    <description> &lt;p&gt;3 more ideas&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
Drupal has the ext module that adds a class to all external links and option to display an icon on them. Something similar could be done for self-links, an icon (don&#039;t know why)
&lt;/li&gt;
&lt;li&gt;
If you write the menu dynamically from an inc file or whatever, you could set the href of the self-link to &quot;javascript:void(0)&quot; which would not reload the page if clicked (I assume that is main reason we are dealing with self-links to avoid an unnecessary reload)
&lt;/li&gt;
&lt;li&gt;
similar to previous post but instead of changing the entire link you could merely write the text portion without the anchor...
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;These could all be accomplished with a combo of JS and CSS&lt;/p&gt;
 </description>
     <pubDate>Fri, 20 Jun 2008 20:52:39 +0000</pubDate>
 <dc:creator>netsperience</dc:creator>
 <guid isPermaLink="false">comment 1230833 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Interesting article Megan.
I</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/highlight-links-current-page-css#comment-1230831</link>
    <description> &lt;p&gt;Interesting article Megan.&lt;/p&gt;
&lt;p&gt;I am an old hand at JavaScript and I usually use it first, sometimes even in php pages, passing values back and forth.&lt;/p&gt;
&lt;p&gt;I like the idea of the cursor:pointer rule to make the link less apparent.&lt;/p&gt;
&lt;p&gt;While it could be tough to distinguish the home page&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;For example, if the link points to &lt;a href=&quot;http://yoursite.com/&quot; title=&quot;http://yoursite.com/&quot;&gt;http://yoursite.com/&lt;/a&gt; but the page is referenced from http://yoursite.com/index.html.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;you could use js to search for a specific fragment of the url (I used to do this on GeoCities after they started adding ad code numbers to the urls)&lt;/p&gt;
&lt;p&gt;Another possibility, as long as we are in the land of JS and DHTML, is to locate the link to the current page and rewrite it to a link to some other page, either a static rule or dynamic rule with an array of links...&lt;/p&gt;
&lt;p&gt;I used to pick out unusual pages on my site and link to them instead of the current page so anyone inattentive enough to click on the link would get a &quot;surprise&quot; - but that would not do for a &quot;serious&quot; site. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 20 Jun 2008 18:31:08 +0000</pubDate>
 <dc:creator>netsperience</dc:creator>
 <guid isPermaLink="false">comment 1230831 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
