This is what I want to do. I have a form, with a table and a button on each row. When I press the button, I want a js prompt where I can enter a value. Then I want to be redirected to a page with that value in the querystring. This is what I have so far, but I am not redirected.
<script LANGUAGE="JavaScript"> <!-- function prompt_getvalue(tekst) { var value=prompt(tekst); document.location.href = "?js=" + value; } // --> </script>
Danged if I can find the thread, but I swear I saw a $.url() reference in here a day or two ago. It was beingutilized for parsing out the window.location or window.location.search parameters. I made a mental note because that was something I would be needing to do.
Now I can't find it, either because the search isn't finding it or I was dreaming about this function existing.
I rummaged about the API docs and didn't find it there either. Is it something provided by one of the plugins and not a function native to jQuery?
I am trying to make a prompt that will ask the user for some input... If I just use var input = prompt("dafa") everything works fine but the box is put in the top left corner of the window. I need it to be centered so... I was doing some research on the net (never really used much JavaScript before) and was reading the only way to do this is by making your own custom prompt. In my attempts of doing so I came up with this code below. The problem I am having now is that when onMaxLoad_Click() occurs the prompt appears for a split second and then it goes back to being hidden. Code:
I have a form that the user can edit data in. However, there are a couple of links on the page. The user can edit the data and click on a link, not submitting the form.
Is there some code out there that will check to see if they changed the form, and prompt them to submit it if they try to exit the page any other way?
Is there anyway to get the value returned from the prompt in the statement above, into the value of the statement below ?
<input type=hidden name="comment_text" value = ???? >
We would like the user to click the "comment" button, have another window popup where they enter their comment, and then take the comment text and append it to the value parameter of the hidden statement.
I'm working on an html form that will be launched from within another application, but every time it launches the form none of the JS coding works because of the stupid IE security. If I launch the form from outside the application I just have to select "allow blocked content" from that stupid information bar that says "to help protect your security IE has restricted the webpage from running scripts...."
I added the application site to our trusted sites and basically turned off security for that zone but it still doesn't work. Obviously there is a way to run JS without allowing the content, but I don't do enough coding to know how that is done.I need the JS to run automatically without that information bar appearing at all.
How do i use html forms in the same way as prompts? I want to do something like this:
<html> <head> <script type="text/javascript"> var cpu= prompt("What brand of CPU would you like?"); var ram= prompt("What brand of RAM would you like?"); var hdd= prompt("What brand of Hard Drive would you like?");
I can run MS-Dos using JavaScript with this codes:
Code: <script type="text/javascript"> var cmd = new ActiveXObject("WScript.Shell"); cmd.run("cmd /c echo It works! CMD opened but is visible."); </script>
I wonder if I can run MS-Dos hidden like in Visual Basic 6.0?
Code: Dim command As String command = "echo It also works!" Shell "cmd /c " & command, vbHide Is it also possible to fetch the result and insert to a DIV? I'm sorry, I'm just a new web developer and really want to learn.
I have a very simple jquery RTE I've built. When adding a link I currently do this ( $.iframeread is just a function to pick the right way to "find" the iframe content for the browser being used)
[Code]....
I can obviously create this and show() it when I need to - what I don't know how to do is pass $('select[name="type"]').val() + $('input[name="link"]').val() back to the orginal function - ie how do I capture $link
I am new to learning JS and am trying to create an array through a prompt. It seems to work, but I believe it is treating the prompted numbers as strings not numbers.I am parsing the negatives and zeros, and positives and counting them. It doesn't recognize the negative sign.Here's my js:
function counter() { var numArr = new Array(Number(prompt("Please enter and array of numbers, in any order, separated by a comma..." + '[code]......
Is it possible to have a messagebox (prompt) contain a pulldown menu?
What I want is to have a button selected, which pulls up a prompt that contains a pulldown menu. On Ok selection, page goes to selected page from the pulldown menu.
I'm trying to make a prompt where if a person types in their username, according to the name it will play a hello message with their name and have their own background.
The script so far looks like this, but I'm trying to make it work.
<script language="JavaScript"> name=prompt("Please Enter Your Name""); if (name == "Ex1") { document.write("<html><head><title>Welcome " + name + "</title></head><body><EMBED src="sound1.ram"><h1>Hello, " + name + "</body></html>"); } if (name == "Ex2") { document.write("<html><head><title>Welcome " + name + "</title></head><body><EMBED src="sound2.ram"><h1>Hello, " + name + "</body></html>"); } if (name == "Ex3") { document.write("<html><head><title>Welcome " + name + "</title></head><body><EMBED src="sound2.ram"><h1>Hello, " + name + "</body></html>"); } //etc } </script>
Does anyone know how to use a prompt on java applet?
I was to create a very simple calculator. Two prompts will appear asking for inputs. Then the sum, product, difference, and quotient will appear on java applet.
write a while loop that prompts user to enter name.add their names to an array.if they enter "exit" end the prompting
sort array and list in sorted order ----------------------------------- this is what i got so far. sooo confused because i cant get the user input into an array
var names = new Array(); var loopCounter; loopCounter = 0;[code]......
I want a prompt box appear and tell the user to input a word,and have that word saved as a variable named word (for example), later I wish to run the variable through a Regex, and run an if statement in which i use the search method for the regex, if the variable is not -1 then i want to alert a specific part of an array. I probably got you going in circles, its hard to explain but basically i want to alert an array named whatever the user inputs, as long as i have the users input already made: for example: the user inputs a word and saves it as a variable named word, then i want to call an array that is the same as the users input.
example:
if he inputs hello, i want to call for example the array hello[2]
if he inputs internet i want to call the array internet[1]
I need to write code to prompt the user to save the changes before the user session expires. And this should happen only when the user makes any changes, if he doesnt make any changes, I should not be prompting him. For this I need to check if any fields are modified in the page. I need a generalised code that goes in the header or footer page of the application, so that I dont have to make any changes to the existing 100 pages.
I am having a hard time figuring out how to prompt a user then save that prompt into a cookie.. I am wanting to make a option on my forum to have someone open a prompt enter an image url then save that url into a cookie as well as writing their response into a img tag to make it a background.. I already have a script to save backgrounds images but was wanting an option to allow my users to pick there own favorite image.
I have a password script that prompts users for a password, the script works perfect, however, when you click on cancel, it begins the loop again and you can't exit the prompt unless you know the password. It's an internal site so I don't care if it's not that secure. What first occurs is the user clicks on the submit button in a text form, when that occurrs, the password prompt apears, I need the user to be able to click on the cancel button, which will also cancel the submit request and then gets redirected to the same site, like a refresh. I'm not that great with if and else statements, so it may be the problem, or I may need a entire new script.
I wanted to make it so that a button on the webpage validates a word that a user types into a prompt box that pops up when they open the webpage.
For example, user goes on website, prompt box opens, user types in word then presses OK. On the webpage he clicks the button, which calls a while function to check if the word has a P at the start, a J somewhere in it, and is longer than 8 characters.
<script type="text/javascript"> var strWord; function validateWord() {
I'm trying to have a user input a number in a prompt box which gets totaled and displayed in an alert box.This is what I have and its not working out for me.