Questions tagged [focusin]

36 questions
1
vote
1 answer

Changing focus over an overflow:hidden contained element, moves it but makes unnoticeable that difference

I have a container with overflow:hidden. Inside it, there is a table with some input within. When you change the focus from input to input, the table element moves to make visible the element, but there is no trace of that change (at least I can't…
Lowlo
  • 255
  • 1
  • 16
1
vote
0 answers

jQuery: focusin and keydown iterate each function multiple times

I have unordered list that have a highlighter when it selected. It only can be selected by using up and down arrow key and only when red div box is on focus. This is the code http://jsfiddle.net/X3vLP/ For first focus, it work perfectly fine which…
AriefFikhrie
  • 33
  • 1
  • 5
0
votes
1 answer

stop focusin multiple times angular?

The issue I am facing is that focusin events get triggered again sometimes on keydown. I would like to stop triggering again the focusin event again on keydown . Do you know how it can be possible? I have spent a lot of time on it. But I am not able…
jesper
  • 7
  • 3
0
votes
1 answer

Showing/hiding of a widget on focus at another widget

I would like "Button" object to disappear when "Target" object is not in focus (for example, when object "Secondary" is focused) and to re-appear when "Target" is in focus again. So, "Target" focused = "Button" visible. In other words, in the code…
edgar
  • 15
  • 5
0
votes
1 answer

What does the event.widget reference mean, and how can you use it to access the widget

Widgets bound with self.root.bind_all("", lambda e: self.focus(e)) return a widget reference through e.widget such as ".!entry2" when a widget receives the focus. I can't find anywhere how this notation can be used to identify or access the…
Nick
  • 9
  • 3
0
votes
0 answers

Can someone tell me why there's 3 massagebox appeared upon Bind(<'FocusIn'>)

self.Lowest = tk.Label(self.Frame2, font=('Arial', 12), text='lower limit', bg='#E8E8E8', bd=7, anchor=W) self.Lowest.grid(row=4, column=1) self.Lowest_e = tk.Entry(self.Frame2, font=('Arial', 12), bg='white', bd=5, width=19,…
Eric
  • 1
0
votes
3 answers

Build a function that trigger on focusin / focusout

I'm trying to build a function that will trigger on focusin / focusout and show the result in a when I entering data in the inputs fields. My doc-ready function is in the and the code below is call in a script tag after the…
Dave
  • 1
0
votes
1 answer

How to get focusin for all textbox? using javascript event not using jquery

Hello Guys, I need help a little bit. Can anyone help me, how to use this keyword in my case?
Ravi
  • 397
  • 5
  • 14
0
votes
1 answer

Add class to each link when it has focus (jQuery)

I have the code below. The problem is the class is added to all links on the page and not the one in focus. $('a.going__outside').on('focusin', function(){ $('a.going__outside').each(function(){ $('a.going__outside…
Laurence L
  • 613
  • 1
  • 8
  • 21
0
votes
1 answer

JQuery-UI tooltip: enable only for mouseover, disable for focusin

Is it possible to make JQuery-UI tooltip open only on onmouseover but not on focusin event, to make it behave more like a native browser tooltip? I tried this solution, but it didn't work: $(document).tooltip({ items:".jquery-tooltip", …
laurt
  • 1,811
  • 3
  • 15
  • 18
0
votes
0 answers

Focus in on prepended inputs

I am prepending inputs on a dom element div as shown below:
Add inputs
function addInputs() { …
Uzair Khan
  • 2,812
  • 7
  • 30
  • 48
0
votes
1 answer

How to prevent focusout when focusin fires on the same element?

I'm attaching an .active class to a div that is wrapped around an input and label. My problem is when an element is clicked inside the wrapped DIV, the focusout will fire, and this is causing a slight flicker of the styling. $('body') …
ditto
  • 5,917
  • 10
  • 51
  • 88
0
votes
1 answer

Validation for input box, use Jquery focusin function doesn't work

I am making a validation form for people creating new accounts on the website. when user enter second input box, they will get error message if the first input box (username) is empty or there is a same username already in database. How to show the…
Ivy Han
  • 7
  • 2
0
votes
1 answer

select onfocusin do something is not working

I am trying to use AJAX to load some inputs & selects that shows up later on the page. I am doing something like this. $("input[type='product']").on("focusin", function(){ var product_type_ids =…
Shih-Min Lee
  • 9,350
  • 7
  • 37
  • 67
0
votes
2 answers

won't receive :focus event?

Here is the HTML:
FieldsetName
Here is the CSS: legend:focus { background-color: #ffddbe; outline: none; } legend.focusin { …
pop
  • 3,464
  • 3
  • 26
  • 43