<?xml version='1.0' encoding='UTF-8'?>
<rss version='2.0'>
	<channel>
		<title>cotonti.com : help please</title>
		<link>https://www.cotonti.com</link>
		<description>Neueste Themenbeiträge</description>
		<generator>Cotonti</generator>
		<language>en</language>
		<pubDate>Tue, 07 Apr 2026 20:55:34 -0000</pubDate>

		<item>
			<title>ez</title>
			<description><![CDATA[you are welcome...]]></description>
			<pubDate>Mo, 22 Nov 2010 21:44:53 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/de/forums?m=posts&q=6043&d=0#post27237]]></link>
		</item>
		<item>
			<title>Kingsley</title>
			<description><![CDATA[Man, I lave you...<br />
<br />
It works <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/grin.gif" alt=":D" /> wouldn't have found that on my own.. Although now I learned something new :p]]></description>
			<pubDate>Mo, 22 Nov 2010 21:28:56 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/de/forums?m=posts&q=6043&d=0#post27236]]></link>
		</item>
		<item>
			<title>ez</title>
			<description><![CDATA[AHHHH maybe my mistake... (i think i see it now)<br />
<br />
<div class="highlight"><pre class="html">&lt;span&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;plug.php?e=contactus&quot;&gt;Contact Us&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;plug.php?e=faq&quot;&gt;F.A.Q&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;plug.php?e=faq&amp;q=1&quot;&gt;Recruitement&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;list.php?c=ranks&quot;&gt;=XE= Ranks&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
&lt;/span&gt;&lt;/li&gt;
</pre></div>
<br />
this span is also triggered by your code... so it appends a span, but there was already one there !<br />
<br />
Try this my friend:<br />
<br />
<div class="highlight"><pre class="js">

$(document).ready(function(){

	$(&quot;ul.subnav&quot;).parent().append(&quot;&lt;span class=&quot;dropdownclicker&quot;&gt;&lt;/span&gt;&quot;); //Only shows drop down trigger when js is enabled (Adds empty span tag after ul.subnav*)

	$(&quot;ul.topnav li span.dropdownclicker&quot;).click(function() { //When trigger is clicked...

		//Following events are applied to the subnav itself (moving subnav up and down)
		$(this).parent().find(&quot;ul.subnav&quot;).slideDown('fast').show(); //Drop down the subnav on click

		$(this).parent().hover(function() {
		}, function(){
			$(this).parent().find(&quot;ul.subnav&quot;).slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
		});

		//Following events are applied to the trigger (Hover events for the trigger)
		}).hover(function() {
			$(this).addClass(&quot;subhover&quot;); //On hover over, add class &quot;subhover&quot;
		}, function(){	//On Hover Out
			$(this).removeClass(&quot;subhover&quot;); //On hover out, remove class &quot;subhover&quot;
	});
});      
</pre></div>
<br />
<br />
You need to change some css to:<br />
<br />
<div class="highlight"><pre class="css">
ul.topnav li span.dropdownclicker { /*--Drop down trigger styles--*/
	width: 13px;
	height: 35px;
	float: left;
	background: url(img/subnav_btn.gif) no-repeat center top;
</pre></div>
<br />
This is just a quick answer, but I think you see what I mean.. and have pointed you in the good direction <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/smile.gif" alt=":)" /><br />
<br />
<br />
greetings,<br />
<br />
ez<br />
<br />
<strong>Added 9 minutes later:</strong><br />
<span style="font-size:12pt"><br />
<strong>Maybe it could even be simpler....</strong><br />
</span><br />
leave your JS code like it was..<br />
just remove the 'extra' span from the HTML..  <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/smile.gif" alt=":)" />]]></description>
			<pubDate>Mo, 22 Nov 2010 14:35:59 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/de/forums?m=posts&q=6043&d=0#post27233]]></link>
		</item>
		<item>
			<title>Kingsley</title>
			<description><![CDATA[only get one popup screen..]]></description>
			<pubDate>Mo, 22 Nov 2010 08:58:23 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/de/forums?m=posts&q=6043&d=0#post27229]]></link>
		</item>
		<item>
			<title>GHengeveld</title>
			<description><![CDATA[If you add an <pre>alert(&quot;triggered...&quot;);</pre> in the place where the arrow is placed, you can check if it's fired twice. You will get 2 alert popups in that case. Placing an alert is a common way to help debug JS code.]]></description>
			<pubDate>Mo, 22 Nov 2010 06:44:41 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/de/forums?m=posts&q=6043&d=0#post27226]]></link>
		</item>
		<item>
			<title>Kingsley</title>
			<description><![CDATA[huh, add an alert? what do you mean..]]></description>
			<pubDate>Mo, 22 Nov 2010 05:45:19 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/de/forums?m=posts&q=6043&d=0#post27225]]></link>
		</item>
		<item>
			<title>ez</title>
			<description><![CDATA[Looks almost like the onready function gets fired twice ????<br />
add an alert to see if so.]]></description>
			<pubDate>Mo, 22 Nov 2010 01:39:46 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/de/forums?m=posts&q=6043&d=0#post27212]]></link>
		</item>
		<item>
			<title>Kingsley</title>
			<description><![CDATA[<a href="http://www.x-ecutionerz.com/newsite/index.php" rel="nofollow">http://www.x-ecutionerz.com/newsite/index.php</a><br />
<br />
I've made this new skin with, which has one error that is quite persistent, in ofcourse, IE.<br />
<br />
In opera, ff en chrome it works like a charm, but IE displays the dropbox arrow twice.. :S<br />
I've been through the code dozens of time, and now I think I just don't see it anymore.<br />
<br />
<div style="margin:4px 0px 4px 0px"><input type="button" value="jquery code" onclick="if(this.parentNode.getElementsByTagName('div')[0].style.display != '') { this.parentNode.getElementsByTagName('div')[0].style.display = ''; } else { this.parentNode.getElementsByTagName('div')[0].style.display = 'none'; }" /><div style="display:none" class="spoiler"><pre class="code">
$(document).ready(function(){

	$(&quot;ul.subnav&quot;).parent().append(&quot;&lt;span&gt;&lt;/span&gt;&quot;); //Only shows drop down trigger when js is enabled (Adds empty span tag after ul.subnav*)

	$(&quot;ul.topnav li span&quot;).click(function() { //When trigger is clicked...

		//Following events are applied to the subnav itself (moving subnav up and down)
		$(this).parent().find(&quot;ul.subnav&quot;).slideDown('fast').show(); //Drop down the subnav on click

		$(this).parent().hover(function() {
		}, function(){
			$(this).parent().find(&quot;ul.subnav&quot;).slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
		});

		//Following events are applied to the trigger (Hover events for the trigger)
		}).hover(function() {
			$(this).addClass(&quot;subhover&quot;); //On hover over, add class &quot;subhover&quot;
		}, function(){	//On Hover Out
			$(this).removeClass(&quot;subhover&quot;); //On hover out, remove class &quot;subhover&quot;
	});

});      
</pre></div></div>
<br />
<div style="margin:4px 0px 4px 0px"><input type="button" value="css" onclick="if(this.parentNode.getElementsByTagName('div')[0].style.display != '') { this.parentNode.getElementsByTagName('div')[0].style.display = ''; } else { this.parentNode.getElementsByTagName('div')[0].style.display = 'none'; }" /><div style="display:none" class="spoiler"><pre class="code">ul.topnav {
	list-style: none;
	padding: 0 20px;
	margin: 0;
	float: left;
	width: 1100px;
	background: #222;
	font-size: 12px;
	background: url(img/topnav_bg.gif) repeat-x;
}
ul.topnav li {
	float: left;
	margin: 0;
	padding: 0 15px 0 0;
	position: relative; /*--Declare X and Y axis base for sub navigation--*/
    
}
ul.topnav li a{
	padding: 10px 5px;
	color: #bfbfbf;
	display: block;
	text-decoration: none;
	float: left;
}
ul.topnav li a:hover{
	background: url(img/topnav_hover.gif) no-repeat center top;
}
ul.topnav li span { /*--Drop down trigger styles--*/
	width: 13px;
	height: 35px;
	float: left;
	background: url(img/subnav_btn.gif) no-repeat center top;
}
ul.topnav li span.subhover {background-position: center bottom; cursor: pointer;} /*--Hover effect for trigger--*/
ul.topnav li ul.subnav {
	list-style: none;
	position: absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/
	left: 0; top: 35px;
	background: #333;
	margin: 0; padding: 0;
	display: none;
	float: left;
	width: 170px;
	border: 0px solid #222222;   
}
ul.topnav li ul.subnav li{
	margin: 0; padding: 0;
	border-top: 1px solid #252525; /*--Create bevel effect--*/
	border-bottom: 1px solid #444; /*--Create bevel effect--*/
	clear: both;
	width: 170px;
    border: 1px solid #222222;   
}


html ul.topnav li ul.subnav li a {
	float: left;
	width: 145px;
	background: #333 url(img/dropdown_linkbg.gif) no-repeat 10px center;
	padding-left: 20px;
}
html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
	background: #222 url(img/dropdown_linkbg.gif) no-repeat 10px center;
    
</pre></div></div>
<br />
<div style="margin:4px 0px 4px 0px"><input type="button" value="html" onclick="if(this.parentNode.getElementsByTagName('div')[0].style.display != '') { this.parentNode.getElementsByTagName('div')[0].style.display = ''; } else { this.parentNode.getElementsByTagName('div')[0].style.display = 'none'; }" /><div style="display:none" class="spoiler"><pre class="code">
&lt;ul class=&quot;topnav&quot;&gt;
&lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;#&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;index.php&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;#&quot;&gt;&amp;nbsp;|&amp;nbsp;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;forums.php&quot;&gt;Forums&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
        &lt;a href=https://www.cotonti.com/&quot;plug.php?e=faq&quot;&gt;Intelligence&lt;/a&gt;
        &lt;ul class=&quot;subnav&quot;&gt;
&lt;span&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;plug.php?e=contactus&quot;&gt;Contact Us&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;plug.php?e=faq&quot;&gt;F.A.Q&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;plug.php?e=faq&amp;q=1&quot;&gt;Recruitement&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;list.php?c=ranks&quot;&gt;=XE= Ranks&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;users.php&quot;&gt;Members&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;#&quot;&gt;&amp;nbsp;|&amp;nbsp;&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;
        &lt;a href=https://www.cotonti.com/&quot;#&quot;&gt;Media&lt;/a&gt;
        &lt;ul class=&quot;subnav&quot;&gt;
&lt;span&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;plug.php?e=gallery&quot;&gt;Image Gallery&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;http://www.x-ecutionerz.com/clangallery/&quot; target=&quot;_blank&quot;&gt;Clan Gallery&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;list.php?c=art&quot;&gt;Art &amp; images&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
&lt;/span&gt;&lt;/li&gt;
    &lt;li&gt;
        &lt;a href=https://www.cotonti.com/&quot;#&quot;&gt;Video&lt;/a&gt;
        &lt;ul class=&quot;subnav&quot;&gt;
&lt;span&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;list.php?c=xemovies&quot;&gt;Clan Videos&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;list.php?c=gmovies&quot;&gt;Game Trailer&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;list.php?c=movierev&quot;&gt;Movie Trailers&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;list.php?c=links&quot;&gt;Links&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;#&quot;&gt;&amp;nbsp;|&amp;nbsp;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;page.php?id=98&quot;&gt;Servers&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
        &lt;a href=https://www.cotonti.com/&quot;plug.php?e=xsccs&amp;a=roster&quot;&gt;Roster&lt;/a&gt;
        &lt;ul class=&quot;subnav&quot;&gt;
&lt;span&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;plug.php?e=xsccs&amp;a=game&quot;&gt;Games&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;plug.php?e=xsccs&amp;a=squad&quot;&gt;Squads&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;plug.php?e=xsccs&amp;a=match&quot;&gt;Matches&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;plug.php?e=xsccs&amp;a=challenge_us&quot;&gt;Challenge Us&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;plug.php?e=xsccs&amp;a=signup&quot;&gt;Sign Up&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
&lt;/span&gt;&lt;/li&gt;

&lt;li&gt;
        &lt;a href=https://www.cotonti.com/&quot;plug.php?e=faq&quot;&gt;Stats&lt;/a&gt;
        &lt;ul class=&quot;subnav&quot;&gt;
&lt;span&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;http://www.x-ecutionerz.com/bc2stats/index.php&quot; target=&quot;_blank&quot;&gt;Bad Company 2&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;plug.php?e=faq&quot;&gt;CoD: Black Ops&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
&lt;/span&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;#&quot;&gt;&amp;nbsp;|&amp;nbsp;&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=https://www.cotonti.com/&quot;plug.php?e=donations&quot;&gt;Support Us&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre></div></div>
<br />
it probably is something very small and stupid, but I just don't see it anymore..]]></description>
			<pubDate>Mo, 22 Nov 2010 01:24:49 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/de/forums?m=posts&q=6043&d=0#post27211]]></link>
		</item>
	</channel>
</rss>