<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1013385" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1013385</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/take-first-letter-out-formtag#comment-1077846</link>
    <description> &lt;p&gt;hm, it still doesnt do what i&#039;d like it to...&lt;br /&gt;
anyway, it&#039;s an optional feature, so... &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/sad.png&quot; title=&quot;Sad&quot; alt=&quot;Sad&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;thank you mark and jon for your support!&lt;/p&gt;
 </description>
     <pubDate>Tue, 06 Feb 2001 12:45:53 +0000</pubDate>
 <dc:creator>merlin</dc:creator>
 <guid isPermaLink="false">comment 1077846 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/take-first-letter-out-formtag#comment-1077827</link>
    <description> &lt;p&gt;You can&#039;t use firstletter.innerHTML in the document.layers section. NN won&#039;t recognize that.&lt;/p&gt;
&lt;p&gt;Also, move the first line of the function into else{}.&lt;/p&gt;
&lt;p&gt;NS6 has a different way of dealing with layers. This won&#039;t work in NS6.&lt;/p&gt;
&lt;p&gt;Good luck on the rest &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;
&lt;p&gt;Jon.&lt;/p&gt;
 </description>
     <pubDate>Mon, 05 Feb 2001 23:06:37 +0000</pubDate>
 <dc:creator>jonsteele</dc:creator>
 <guid isPermaLink="false">comment 1077827 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/take-first-letter-out-formtag#comment-1077813</link>
    <description> &lt;p&gt;still not working in nn.&lt;br /&gt;
i tried it with quite a lot of possibilities of combinations (what shall i do, don&#039;t know java... &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt; ). my last try:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;function takeoutfirstletter() {&lt;br /&gt;&amp;nbsp; firstletter.innerHTML = &amp;quot;&amp;quot;;&lt;br /&gt;&amp;nbsp; tmp = document.wettbewerb.titel.value;&lt;br /&gt;if (document.layers){&lt;br /&gt;&amp;nbsp; document.layers[&amp;#039;firstletter&amp;#039;].document.open();&lt;br /&gt;&amp;nbsp; document.layers[&amp;#039;firstletter&amp;#039;].document.write(firstletter.innerHTML + tmp.substring(0,1)); &lt;br /&gt;&amp;nbsp; document.layers[&amp;#039;firstletter&amp;#039;].document.close();&lt;br /&gt;} else {&lt;br /&gt;&amp;nbsp; document.all[&amp;#039;firstletter&amp;#039;].innerHTML = firstletter.innerHTML + tmp.substring(0,1);&lt;br /&gt; titel.value=tmp.substring(1,tmp.length)&lt;br /&gt;&amp;nbsp; }&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;got errors from &#039;takeoutfirstletter&#039; not defined via &#039;document.all&#039; has no properties to firstletter not defined. &lt;/p&gt;
&lt;p&gt;any ideas what i&#039;m doing wrong here?&lt;/p&gt;
 </description>
     <pubDate>Mon, 05 Feb 2001 13:58:15 +0000</pubDate>
 <dc:creator>merlin</dc:creator>
 <guid isPermaLink="false">comment 1077813 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/take-first-letter-out-formtag#comment-1077747</link>
    <description> &lt;p&gt;To write to layers in netscape, you must use layername.document.write. Try this:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;html&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;amp;lt;script language=javascript&amp;amp;gt;&lt;br /&gt;function do_sumthin() {&lt;br /&gt;&amp;nbsp; tmp = my.value;&lt;br /&gt;&amp;nbsp; if (document.layers){&lt;br /&gt;&amp;nbsp; document.layers[blah].document.open();&lt;br /&gt;&amp;nbsp; document.layers[&amp;#039;blah&amp;#039;].document.write(blah.innerHTML + tmp.substring(0,1)); &lt;br /&gt;&amp;nbsp; document.layers[&amp;#039;blah&amp;#039;].document.close();&lt;br /&gt;&amp;nbsp; }&lt;br /&gt;&amp;nbsp; else{&lt;br /&gt;&amp;nbsp; document.all[&amp;#039;blah&amp;#039;].innerHTML=blah.innerHTML + tmp.substring(0,1);&lt;br /&gt;&amp;nbsp; my.value=tmp.substring(1,tmp.length)&lt;br /&gt;&amp;nbsp; }&lt;br /&gt;}&lt;br /&gt;&amp;amp;lt;/script&amp;amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;span id=blah&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;&amp;lt;BR&amp;gt;&lt;br /&gt;&amp;lt;input type=text id=my&amp;gt;&lt;br /&gt;&amp;lt;input type=button value=&amp;quot;Send it away!&amp;quot; onClick=&amp;quot;do_sumthin()&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
 </description>
     <pubDate>Fri, 02 Feb 2001 21:07:09 +0000</pubDate>
 <dc:creator>jonsteele</dc:creator>
 <guid isPermaLink="false">comment 1077747 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>it works :)</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/take-first-letter-out-formtag#comment-1077728</link>
    <description> &lt;p&gt;yup, it&#039;s working! i added the form_name to the my-stuff...&lt;br /&gt;
but, it&#039;s only working in ie5, not in netscape... &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/sad.png&quot; title=&quot;Sad&quot; alt=&quot;Sad&quot; class=&quot;smiley-content&quot; /&gt; any ideas how to solve that?&lt;/p&gt;
&lt;p&gt;anyway thank you! &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/big.png&quot; title=&quot;Laughing out loud&quot; alt=&quot;Laughing out loud&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 02 Feb 2001 09:21:05 +0000</pubDate>
 <dc:creator>merlin</dc:creator>
 <guid isPermaLink="false">comment 1077728 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/take-first-letter-out-formtag#comment-1077725</link>
    <description> &lt;p&gt;I&#039;m using IE5 and it works for me.  Try stuff like document.my.value or put it in a form and try form_name.my.value&lt;/p&gt;
&lt;p&gt;the span tag... notic the ID property? I use it later to put the text from the textbox into the HTML page. The innerHTML is used to address the text between the span tags.  Here, I added to it with each click.&lt;/p&gt;
 </description>
     <pubDate>Fri, 02 Feb 2001 09:03:17 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1077725 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/take-first-letter-out-formtag#comment-1077724</link>
    <description> &lt;p&gt;thanks, mark.&lt;br /&gt;
but i get an error:&lt;br /&gt;
&#039;my&#039; is not defined... &lt;/p&gt;
&lt;p&gt;another question: what&#039;s the span-tag for?&lt;/p&gt;
&lt;p&gt;i need the whole thing onChange but that i can do on my own (at least one thing! &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, 02 Feb 2001 08:21:08 +0000</pubDate>
 <dc:creator>merlin</dc:creator>
 <guid isPermaLink="false">comment 1077724 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/take-first-letter-out-formtag#comment-1077710</link>
    <description> &lt;p&gt;when would you take the letter out? onBlur? onChange? onClick?&lt;/p&gt;
&lt;p&gt;anyway.... I used onClick with a button&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;html&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;amp;lt;script language=javascript&amp;amp;gt;&lt;br /&gt;function do_sumthin() {&lt;br /&gt;&amp;nbsp; tmp = my.value;&lt;br /&gt;&amp;nbsp; blah.innerHTML=blah.innerHTML + tmp.substring(0,1);&lt;br /&gt;&amp;nbsp; my.value=tmp.substring(1,tmp.length)&lt;br /&gt;}&lt;br /&gt;&amp;amp;lt;/script&amp;amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;span id=blah&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;&amp;lt;BR&amp;gt;&lt;br /&gt;&amp;lt;input type=text id=my&amp;gt;&lt;br /&gt;&amp;lt;input type=button value=&amp;quot;Send it away!&amp;quot; onClick=&amp;quot;do_sumthin()&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
 </description>
     <pubDate>Thu, 01 Feb 2001 21:57:19 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1077710 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
