Why is it that you need the return keyword?
Where does the argument event come from?
I know it works, I just want to know why it works.
I've been looking at some refferences and can't seem to find an answer if someone could give me an explanation or point me to a website, that would be great.
I've written a script that displays tooltips when your mouse hovers over a link - all this is fine, but when I click on the link and move to another page, then click the back button on the browser to go back, the tooltip for the link I clicked is still visible! It'd be great if there was a way of detecting the button had been pressed so that I can hide it...
p.s. I tried onclick = "tooltips.hideToolTip(4); return true;" for the links but no joy...
I want to be able to find out what key the user pressed, rather than just that they pressed one. As far as i can see there is only functionality to get that the user pressed the shift key.
The idea I want here is when the user click on a character name from the drop down select bar at the bottom of the the form under case 1 and hits Add it is supposed to add it as a new LI in the UL that's under the drop down. Also what I woudl like to do is when the user as chosen all of the characters they want to I would like to insert the data into the insert tag inside my function at the bottom of this code strip and take the first character selected and put it into the insert with the column of default_char_id and default_news_id.
Right now when you click the right submit button next to the drop down all it does is go back to the default page I have set up.
does anyone know how I can test, in javascript, which of several buttons was pressed when submitting a form? Currently, I use the onSubmit event handler to call a form validator function, and it is in that function which I would like to test which submit button was pressed. Anyone know?
I'm trying through a form to display a loading gif when pressed the submit button. I've found on the net this code, but something is wrong. If a keep the id="form33" I can see my loading.gif displayed in place of the submit button, but nothing else happen, form not send. If I delete id="form33", I don't see anymore the loading gif, but my form is correctly sent and after few seconds ping2.php is opened..
This simple example shows where my problem is. It works fine when all mouse buttons are released, and also if a button is pressed outside the image. But if a button is pressed inside the picture it'll not call onmouseout when the mouse is brought outside the picture. The worst is it'll never call it, leaving the button stuck pressed forever until mouse is moved over it again.
I just noticed if I place the picture inside an A tag it does work fine then, but I don't need an A element here. Moreover, this fix appears to work only for IE6, IE4 still doesn't work properly. I'm asking if there's some other way to correct this. I'm also making this compatible with Netscape 4.5, and the presence of an A element changes the event.target.
The fact is I can't seem to disable the default drag'n drop of IE with pictures. Netscape 4.5 appears to work perfectly. By placing onmousemove="return false;" in BODY I aboid the cursor change in IE but nothing else.
I need a javascript that could record the ID/name of a textbox when the user hit delete or backspace to be used on the next page after submission in a PHP script.
There are 96 text boxes, they are all randomly placed on the screen with a question that came from a randomized array's keys (the script later checks the values of the textboxes with the values from the array's keys that correlate to the textboxes by the name/id of the textbox, which is assigned by a for loop that issues the next($array) to assign everything everywhere.
At the same time, it needs to count how many times the backspace/delete were pushed and have that recorded and sent as well.
After 45 minutes of research I've been able to solve the "count the backspace/delete key" problem:
<script type="text/javascript"> var count = 0; document.onkeypress=function(e){ var e=window.event || e
[Code]....
But onto the name/id issue: I'm not sure how to go about retrieving the names/id of the textboxes. I would assume a onkeypress event for every textbox, but hope that there could be something I could just add to this code.
I want to disable a function when a user is pressing control or command using Javascript. Is this at all possible? My reason for doing this is because I recently implemented lightbox to my script, but I still want users to be able to open the image in a new tab by just clicking control or command when clicking the image rather than opening it in lightbox (which it does).
I have a textarea where text can be entered and when pressing an image the copy sign will appear. When the copy image is pressed, it is only when the cursor is in the end of the text that the cursor comes after the copy sign.
When the cursor is put in the middle of entered text and the copy image is pressed, the copy sign appears in the end of the text. I would like for the sign to appear whereever the cursor is put and then focused right after the entered copy sign.
The code is:
<html> <head> <title>The Text Box</title> <link rel="stylesheet" href="style.css" type="text/css">
This is a proof of concept question ... that I've been unable to prove. Ultimate goal to is allow one button to have different actions with the Shift, Control or Alt key pressed for a link "<a...>" or a button ("<input type='button'" or "<button>.") click. The following appears to work in FF and MSIE on PC (with some side-effects), but not at all on a iMac using FF or Safari.
The display in the textarea shows that I can detect when the Shift, Control or Alt keys are pressed and an event is created with a mouse click. With a left mouseClick, the display shows
I have an application where at the top I have a div id="title" for the title then in the middle div id="map" I have the google map then bottom I have buttons div id="mainOption". So what I want is that I want another few div at the right. By default one of the div I will fill up with a combo box and and submit button. The problem I want the div only to be shown when I pressed the button at the bottom div.
I want to use an onkeydown() on my web site and the web site to know which key I pressed. Specifically know I pressed the arrow keys and store which key was pressed in a variable.
The below is part of the codes of my image matching programme. The programme loads 2 different series of images in the area and the up/down button is supposed to change each set of the series of images. Currently, the codes only allow one set of the images to be changed. what can be done so that both set get changes when the up/down key is pressed?
Codes:
public void keyReleased(KeyEvent e) { zoom = false; repaint(); }
how do i make a html button stay down when pressed, until another button within a specified group of buttons is pressed, at which point it is released and the other button stays pressed?
i m trying to call multiple function when submit is pressed.i have tried wrapping the functions as well as onsubmit="return validateForm() && checkdate(mydate)"my 1st function is validating if all the columns in the form are filled or not AND.my 2nd function is validating date text box in my form....i m not able to call multiple functions onsubmit [code]
Is it possible to call a javascript function when the forward or back browser buttons are pressed? I have a site that loads content into iframes using javscript functions, however this means that the back button doesn't track the history of the user through the site.
I want to use an onkeydown() on my web site and the web site to know which key I pressed. Specifically know I pressed the arrow keys and store which key was pressed in a variable. Must work on all browsers.
I have form within a form and I would like to disable the submit button in the inner form.Currently I have this for some other forms, and it works just finePHP Code:
<form method="post" action="index.php" onkeypress="return event.keyCode!=13"> <input type="text" name="first" value=""Â Â /> <input type="text" name="last" value=""Â Â />