answersLogoWhite

0


Best Answer

Your problem probably has something to do with the difference between =, '1' returns false.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you make Javascript Hold a random Number. I'm making a guessing game and every time I click the button to submit my guess It creates a new number?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How do you add a click event to a java button?

we can do this using of javascript. you can use this following code: <input type=button value="button" onClick=onclick_function()> here onclick_function() is a function which is called by javascript on clicking the button. javascript code is as follows: <script language="javascript" type="text/javascript"> // your code for onclick_function() function onclick_function(){ alert("Welcome to javascript"); } </script>


How do you unlock buttons with Javascript?

HTML buttons have a property called "Disabled" which either disables (grays out) the button enables it (default). This property can be accessed through Javascript DOM by the following statement: document.getElementById("<the button ID>").disabled = true | false; Use "false" if you want to unlock a button, and "true" if you want to lock it


What is an Alert in JavaScript?

A JavaScript Alert, called by using the alert(msg); function, creates a dialog window in front of the browser that displays some sort of message (msg) and an OK button. The user much click the OK button in order to do anything else on that page.Additional:alert("Hello World!"); //simply an alert msg with ok buttonconfirm("Are you sure you want to quit?"); // it is a confirmation box with ok and cancel buttonprompt("Enter Your name."); //this one will let you enter something in a box.


What is HTML code of Display text after click on submit button?

To create a button that displays text after being clicked, you can use HTML and JavaScript. Here's an example code: HTML: <button onclick="displayText()">Submit</button> <p id="text"></p> JavaScript: function displayText() { document.getElementById("text").innerHTML = "Text to display after clicking submit button."; } In this code, the button is created using the <button> tag and an onclick attribute is added to call the displayText() function when clicked. The function displayText() uses JavaScript to access the element with the ID "text" and change its innerHTML to the desired text, which will be displayed below the button.


Where is java script found in chrome to turn it on?

To enable JavaScript in Chrome, click the Menu button (to the right of the address bar) and choose "Settings". Scroll to the bottom and click "Show Advanced Settings". Under the "Privacy" heading, click the "Content settings" button. Under the JavaScript heading of the box that comes up, click "Allow all sites to run JavaScript (recommended)".

Related questions

How do you add a click event to a java button?

we can do this using of javascript. you can use this following code: <input type=button value="button" onClick=onclick_function()> here onclick_function() is a function which is called by javascript on clicking the button. javascript code is as follows: <script language="javascript" type="text/javascript"> // your code for onclick_function() function onclick_function(){ alert("Welcome to javascript"); } </script>


How do you activate jQuery in flash actionscript button?

Use the getURL() function to run javascript with the "javascript: " protocol. getURL("javascript: $('jquery code here');", "_self");


Why won't my answers save?

There may be a problem with WikiAnswers. Sometimes the 'Save' button does not work temporarily. Also, it may be a problem with JavaScript on your computer, as the 'Save' button works by using JavaScript.


How do you disabe radio buttons on clicking a button using javascript and HTML?

radioButton.disabled=true; to disable with javascript <input type="radio" disabled> to disable it with html radioButton.disabled=false; to enable with javascript


How can you add a button to erase a canvas in HTML?

You need JavaScript for that purpose. You need when the button is hit, a div should hide.


How do you unlock buttons with Javascript?

HTML buttons have a property called "Disabled" which either disables (grays out) the button enables it (default). This property can be accessed through Javascript DOM by the following statement: document.getElementById("<the button ID>").disabled = true | false; Use "false" if you want to unlock a button, and "true" if you want to lock it


What is an Alert in JavaScript?

A JavaScript Alert, called by using the alert(msg); function, creates a dialog window in front of the browser that displays some sort of message (msg) and an OK button. The user much click the OK button in order to do anything else on that page.Additional:alert("Hello World!"); //simply an alert msg with ok buttonconfirm("Are you sure you want to quit?"); // it is a confirmation box with ok and cancel buttonprompt("Enter Your name."); //this one will let you enter something in a box.


How does one submit a form using JavaScript?

You can submit a form with Javascript by using certain code which allows you to firstly create a form then nest this with a button that will submit when, for example, a user clicks on it.


How to Run Javascript In Mozilla Firefox?

Many people use Mozilla Firefox as an alternative web browser to Internet Explorer. This program is an open-source program which has made it easy to customize. Javascript is accessible in Firefox, but in order to use it, you will need to ensure that it is turned on. In this article, you will learn the steps that are necessary in order to turn Javascript on in Firefox. 1. The first step you will want to take is to open a Mozilla Firefox window. Once the window has opened, go to the menu bar and select ‘tools.’ 2. Once the ‘tools’ option is open, you will want to find the ‘options’ button. Once you have opened the ‘options’ window, find the tab that reads ‘content’ on it. 3. In the ‘content’ window, you will want to look for the ‘Enable JavaScript’ radio button. This radio button will need to be highlighted in order for JavaScript to become enabled. 4. In this screen, you can also customize your JavaScript capabilities. You are able to customize what JavaScript can and cannot do by selecting the ‘advanced’ button. Once in the ‘advanced’ screen, you are able to select or deselect the options available for JavaScript, so that they are customized to suit your needs. 5. Once you have finished in this screen then click the ‘OK’ button. 6. After you have exited the advanced screen, click the ‘OK’ button at the bottom of the ‘options’ window as well. 7. After you have successfully closed all the screens, JavaScript will now be enabled. Once you follow these steps, turning Javascript on and off in Mozilla Firefox is very easy. You can also follow these steps to customize Javascript to meet the needs of each user as well.


How do you add an reset button that erases a canvas in HTML?

You have to apply JavaScript for it. The function for resetting the canvas can be made.


What is HTML code of Display text after click on submit button?

To create a button that displays text after being clicked, you can use HTML and JavaScript. Here's an example code: HTML: <button onclick="displayText()">Submit</button> <p id="text"></p> JavaScript: function displayText() { document.getElementById("text").innerHTML = "Text to display after clicking submit button."; } In this code, the button is created using the <button> tag and an onclick attribute is added to call the displayText() function when clicked. The function displayText() uses JavaScript to access the element with the ID "text" and change its innerHTML to the desired text, which will be displayed below the button.


Where is java script found in chrome to turn it on?

To enable JavaScript in Chrome, click the Menu button (to the right of the address bar) and choose "Settings". Scroll to the bottom and click "Show Advanced Settings". Under the "Privacy" heading, click the "Content settings" button. Under the JavaScript heading of the box that comes up, click "Allow all sites to run JavaScript (recommended)".