Using Javascript To Make A "jump To Topic" Form.
Jan 12, 2006
<form id="id" name="name" method="post" action="">
<input name="textfield" value="Group #" size="7" type="text">
<input name="Submit" value="Go!" type="submit">
</form>
Any idea how I could direct the user to 'viewtopic.php?id=foo' when foo is entered into textfield and submit is clicked?
View 4 Replies
ADVERTISEMENT
Oct 10, 2010
I wanted to make the value of the dropdownbox Topic titels: (name=id) equal with the textbox Titel (name=title) and it must be always equal when i get the value in it and when i change the value of the dropdownbox [code]
View 2 Replies
View Related
Jun 4, 2009
vBulletin uses a template system so I can't create a separate element for everything -- we have had several people ask for a "skip to the next post" feature and I'd like to implement that for them My first thought was to use anchor tags such as:
<a name="$post[postid]">
for each post and then to create a link for "Jump to Next Post" which would advance the user to the next instance of <a name="$post[postid]"> in which the postid obviously would've changed. With that I didn't know if there was a way that I could have javascript look for the next instance of this, or to pull the postid number and add 1 to it to find the next post on the page. I'm also not sure if it would need to be as complicated as reading where it was at and then adding one and directing person to that anchor point, which is why I thought maybe it could just look for the next instance of <a name="$post[postid]"> and refocus the screen on that.
It doesn't have to be an anchor, it can be a hidden input, whatever makes the JS be able to seek it as a point to move the page to. We do have some members that select a different number of posts per page than the default, so I'm guessing that the plus one might not be a great idea if they used a smaller number per page and then clicked the last one, whereas people with more per post wouldn't need to stop at the same point before it no longer let them. If there's a solution for that, that'd be great as well (such as once it hits the last element on the page, it no longer receives instruction, goes to the top of the page, or something).
View 2 Replies
View Related
Apr 6, 2007
My website uses a very tall iframe to display catalog pages from an external website. I'm using iframes here to make it look like the external catalog pages are on my webpages.
The problem is that when a visitor goes to my page, scrolls down to view all the contents inside the iframe, and then clicks a link inside the bottom of the iframe to goto the next page, that next catalog page will load inside the iframe, but the visitor will still be looking at the bottom of the iframe on my website, and thus has to scroll up to the top of my website to see the top of the iframe's contents.
To see exactly what I mean, go here, scroll down, and click the next page link: [URL]
How can I make it so when someone clicks a link inside the iframe, that the page with the iframe automatically scrolls to the top appearing as if the whole website has refreshed?
View 5 Replies
View Related
May 19, 2010
I'm trying to get my form to jump to the necessary URL. The form is mixed with PHP, HTML and has some JS and AJax in there as well.In its simplest form - This is all in a while loop INDEX.PHP
[code]...
View 1 Replies
View Related
Mar 19, 2010
I am having trouble with the Form Validation I have on my wifes website...everything is working how it should it's just when you hit the submit button the screen jumps up about an inch or so putting the error message out of view....Is there anything that can be done to stop...
View 8 Replies
View Related
Dec 9, 2010
I need to jump to different pages based on user input in current form. I had tried using javascript to jump, it worked for a second or two, then it jump back to the calling form. Here are the methods I used:
url is the intented url, e.g. "form2.htm"
1. from form "form1":
document.forms["form1"].action = url;
[code].....
View 1 Replies
View Related
Dec 9, 2010
I want my page to jump to a different page based on data collected in the form input fields. I can jump to a new page alright, using the following javascript:[code]The problem is, I can see the new page was jumped to, but immediately it return back to the page that trigger the jump.
View 1 Replies
View Related
Jul 20, 2005
How can I make an onchange event update the src for an IFRAME? I would like
to do it without reloading the page, is this possible?
View 3 Replies
View Related
Dec 6, 2006
i want to make my textbox invisible in certain cases, is it possible to do using javascript or by any other means.
View 2 Replies
View Related
Oct 6, 2006
I was just wondering if there is a jscript code to jump to the middle (or where my content is) of the page if i click on the link on the same page. if not how would you do it anyways?
View 4 Replies
View Related
Feb 3, 2011
On my site I have a switch and JQuery fade in fade out when I click on 'Updates' or 'Projects'. Problem is that if I have scrolled down the page a little before clicking one of them, the page jumps back to top on clicking these options. I would like to eliminate that jump to the top.
[URL]
View 11 Replies
View Related
Jul 20, 2005
I need to find the code that makes a web page immediately jump over to another url the moment a visitor arrives to it. I know the code is short, but I can't remember it. Anybody know what that code is?
View 3 Replies
View Related
Mar 23, 2007
I have created a small javascript jump menu that is designed to hide/display content depending on the users selection. It works perfectly in firefox, but nothing happens in IE. Code:
View 3 Replies
View Related
Jul 18, 2007
Can any tell me whether you can change the speed of the scroll at all?
View 1 Replies
View Related
Mar 25, 2011
I have this (nice) procedure to move a table row:
Code:
function MoveRow(tbl,i,j) {
tbl = document.getElementById(tbl);
[code].....
View 5 Replies
View Related
Aug 11, 2009
I currently have a script to jump to an anchor tag when the page loads:
<script type="text/javascript">
function goToAnchor() {
location.href = "myPage.html#myAnchor";
}
</script>
Now, I would like to take it a step further and would like to link from page A to page B that usually takes a while to load and once the page loads, run a script to jump to the specified anchor tag on the page after everything has loaded. I know I have to add some parameters at the end of the url link on page A, but that's where I get stuck.
View 6 Replies
View Related
Aug 21, 2007
I have this code which works well, but rather than buttons (title 1, title 2), I want to achieve the same description change using a jump menu. I'm pulling my hair out trying to work it out and i'm sure it's simple. Code:
View 3 Replies
View Related
Aug 31, 2007
Is there anyway to use Javascript (or other code) so that if you've arrived at a web page on your site via google (and there is alot of text on the screen) the javascript will scroll automatically to the searched terms?Is there anyway to use Javascript (or other code) so that if you've arrived at a web page on your site via google (and there is alot of text on the screen) the javascript will scroll automatically to the searched terms?
View 1 Replies
View Related
Jun 18, 2010
I am using the folloeing dropdown list code on my site and have found that it doesnt work properly in IE. Sometimes it works.... Sometimes it doesnt 'jump to page'
PHP Code:
View 3 Replies
View Related
May 20, 2006
I have the jump menu (used with an html form):
<script language="javascript">
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
</script>
How can i add rel=nofollow?
View 4 Replies
View Related
Jul 26, 2009
If you have a look at [URL].. and click on an image you will see what I mean.It's as if the image is converted to a div while animating.
View 1 Replies
View Related
Aug 29, 2009
if i have a large script built multi-select-list-box, is there a way within javascript to onClick of a hyperlink, jump-to the line within the select box that corresponds to the value clicked?
View 5 Replies
View Related
Jan 11, 2007
I am creating a dropdown menu for my site because I have run out of space for a nav bar, what I would love to do is create a dropdown list that when an option is selected will jump to a specific URL.
View 2 Replies
View Related
Jun 6, 2004
I have a jump menu on my page and it works fine, but I want the selections in the menu to open in a new browser window. How do I do that?
<script>
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->
</script>
<form name="form1" method="post" action="">
<div align="right"><select name="form1" class="box" onChange="MM_jumpMenu('parent',this,0)">
<option value=http://www.1stoption.com>-- Option 1</option>
<option value=http://www.2ndoption.com>-- Option 2</option>
</select>
</div>
</form>
View 1 Replies
View Related
Feb 23, 2003
However, I want to create a demo for people where if they pull down the first value, the script does what it has to do
however, if they choose any other option (choice b,c,d,e etc)
there is a jump link like feature where a link opens a new window asking them to buy
How do i program this pulldown to recognize what values need to link to another page?
View 3 Replies
View Related