Tagged Questions

4
votes
4answers
93 views

Trap the enter key, but not when choosing the browser’s autocomplete suggestion

I have some textboxes on a page and I want to click a link when the user presses enter in any of them. I can easily trap the enter button using javascript (by looking for 13 in ev …
4
votes
6answers
571 views

In IE8 enter key in a form does not work

I have a problem that in IE8 the enter does not work to submit a form. I have generated a test page to expose this problem. It seems that displaying the form in the onLoad function …
4
votes
4answers
3k views

Call a specific button onClick event when the enter key is pressed C#

Hey, I'm trying to get a specific asp:button onclick event to fire when I press the enter key in a specific asp:textbox control. The other factor to be taken into account is that …
2
votes
3answers
192 views

Detect when link is activated - either by click or tab and enter

Hi Guys Just wondering if anyone knows of a way that wiring up jquery to run a function for when a user clicks on a link or tabs to a link and hits enter. I want to intercept th …
1
vote
3answers
224 views

How to prevent a Winforms control from listening to the keyboard …

For a certain inputform, I'd like to make it possible to do input with the keyboard. I know how to read the keys through KeyPressed and KeyUp, but the problem is that when a contr …
0
votes
1answer
69 views

VB.NET 2008 - How Do I Make Button.click Event Perform both the enter and period(del) keys on the numerical keyboard?

How Do I Make Button.click Event Perform both the enter and period(del) keys on the numeric keypad? Code snippet: Private Sub frmCalc_KeyDown(ByVal sender As Object, ByVal e As S …
0
votes
2answers
68 views

HTML: What determines the ‘move the focus to the next control when Enter is hit’ behavior

A basic HTML question. Is it possible on an HTML page to declaratively achieve a behavior when pressing Enter in a textbox moves the focus to the next control? How do you achieve i …
0
votes
2answers
84 views

Preserving enters in user’s input by PHP

How can you preserve "enters" given by the user in the database and show them then to other users? I store the question of the user and use the following functions to sanitize the …
0
votes
5answers
520 views

Javascript : Enter Key Press

Hi All, Good Morning... I am using java script in each page to trigger the Enter key press Event inside the textbox. It is working fine. Now i want to place the code in the .js f …
0
votes
2answers
966 views

JQuery - AJAX dialog modal, can’t hit enter key to submit form

On a website I'm working on, when you click sign on, a jquery dialoge modal pops up, but you have to click on OK to submit the form, you can't just hit enter. I need it to be able …
0
votes
2answers
417 views

ASP.NET Call javascript function on enter key press

I have an ASP.NET page with some text boxes meant for searching purpose.Now i want to invoke a javascript function which is already written ,when the user press the enter key.I am …
0
votes
2answers
185 views

ListItem Mouse Enter Message Box

Hi, I am using event triggers in my XAML, I have the following style set on a ListItem. What I want is to display the contents of the ListItem in a message box when the mouse ente …
-1
votes
4answers
340 views

DefaultButton in ASP.NET forms

What is the best solution of defaultButton and "Enter key pressed" for ASP.NET 2.0-3.5 forms?