<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "jumpmenu"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "jumpmenu"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>jumpmenu</title>
				<description><![CDATA[ where can I find the source for the jump menu(drop down). in the body template it just shows that it is loaded but I want to edit the source.  thanx]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2866/7588.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2866/7588.php</link>
				<pubDate><![CDATA[Fri, 5 Mar 2004 06:52:20]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ If you mean from the guestbook, I think it was in <br /> <br /> lib/gb.class.php and somewhere between line 60 and 120]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2866/7589.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2866/7589.php</link>
				<pubDate><![CDATA[Fri, 5 Mar 2004 07:53:55]]> GMT</pubDate>
				<author><![CDATA[ Jam'n]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ How do you know which text to edit? I see the jump menu code, but it's hard to distinguish where to put the url info to make it go back to my homepage.....instead of "remain".<br /> <br /> Thanks for any help.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2866/7686.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2866/7686.php</link>
				<pubDate><![CDATA[Wed, 17 Mar 2004 00:28:24]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I guess how I should have asked that question is - <br /> <br /> I would like to add jump points (URLs) into the jumpmenu.....<br /> how would I go about doing this?<br /> <br /> Thanks for any help.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2866/7692.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2866/7692.php</link>
				<pubDate><![CDATA[Wed, 17 Mar 2004 07:28:55]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Here is what you have to do: <br /> <br /> 1.) open /guestbook/lib/gb.class.php in your favorite ascii editor <br /> and look for the Jumpmenu code. It starts around line 73 <br /> <br /> [code]function generate_JumpMenu&#40;&#41; &#123; <br />         $menu_array&#91;&#93; = &quot;&lt;select name=\&quot;entry\&quot; onChange=\&quot;urlJump&#40;'self',this&#41;\&quot; class=\&quot;select\&quot;&gt;&quot;; <br />         $menu_array&#91;&#93; = &quot;&lt;option value=\&quot;http&#58;//www.mydomain.com/\&quot; class=\&quot;select\&quot;&gt;Back To Home&lt;/option&gt;&quot;; <br />         $menu_array&#91;&#93; = &quot;&lt;option value=\&quot;0\&quot; selected&gt;&quot;.$this-&gt;db-&gt;LANG&#91;&quot;FormSelect&quot;&#93;.&quot;&lt;/option&gt;&quot;; <br />         if &#40;$this-&gt;db-&gt;VARS&#91;&quot;entries_per_page&quot;&#93; &lt; $this-&gt;total&#41; &#123; <br />             $remain = $this-&gt;total % $this-&gt;db-&gt;VARS&#91;&quot;entries_per_page&quot;&#93;; <br />             $i = $this-&gt;total-$remain; <br />             while &#40;$i &gt; 0&#41; &#123; <br />                 $num_max = $i; <br />                 $num_min = $num_max-$this-&gt;db-&gt;VARS&#91;&quot;entries_per_page&quot;&#93;; <br />                 $num_min++; <br />                 $menu_array&#91;&#93; = &quot;&lt;option value=\&quot;$remain\&quot;&gt;$num_min-$num_max&lt;/option&gt;&quot;; <br />                 $i = $num_min-1; <br />                 $remain += $this-&gt;db-&gt;VARS&#91;&quot;entries_per_page&quot;&#93;; <br />            &#125; <br />         &#125; <br />         $menu_array&#91;&#93; = &quot;&lt;/select&gt;&quot;; <br />         $menu_array&#91;&#93; = &quot;&lt;input type=\&quot;submit\&quot; value=\&quot;&quot;.$this-&gt;db-&gt;LANG&#91;&quot;FormButton&quot;&#93;.&quot;\&quot; class=\&quot;input\&quot;&gt;&quot;; <br />         return $menu_array; <br />     &#125; <br /> [/code]<br /> <br /> Replace http://www.mydomain.com/ with your homepage URL <br /> <br /> 2.) Now to add a javascript function to the guestbook header <br /> go to your templates folder and find header.php and add this between the &lt;head&gt;Put below code somewhere between these&lt;/head&gt; tags<br /> <br /> [code]&lt;head&gt;&lt;script language=&quot;Javascript&quot;&gt; <br /> &lt;!-- <br /> function urlJump&#40;target,selObj&#41; &#123; <br /> var optionValue = selObj.options&#91;selObj.selectedIndex&#93;.value; <br /> var isURL = /http&#58;/; <br /> var regMatch = isURL.test&#40;optionValue&#41;; <br /> if&#40;regMatch == true&#41; &#123; <br /> eval&#40;target+&quot;.location='&quot;+selObj.options&#91;selObj.selectedIndex&#93;.value+&quot;'&quot;&#41;; <br /> &#125; <br /> &#125; <br /> // --&gt; <br /> &lt;/script&gt; <br /> &lt;/head&gt; <br /> [/code]<br /> <br /> It works, I have tried it. for the other links though, you will not be using the "Go" button, as it is an auto-jump select type <br /> <br /> I don't use it on my site, because I don't need it.<br /> ---------------------------------------------------------<br /> ps. The Java code is there for when you select Back To Home you don’t have to press the go button, it automaticly jumps.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2866/7695.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2866/7695.php</link>
				<pubDate><![CDATA[Wed, 17 Mar 2004 13:31:48]]> GMT</pubDate>
				<author><![CDATA[ Jam'n]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thank you very much!<br /> <br /> I will add this and try it out.   <img src="https://proxy2.de/forum//images/smilies/8a80c6485cd926be453217d59a84a888.gif" /> <br /> *crosses fingers*<br /> <br /> Thanks again.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2866/7698.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2866/7698.php</link>
				<pubDate><![CDATA[Wed, 17 Mar 2004 19:54:41]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
	</channel>
</rss>