$('input.input-qty').mouseover(function(){ $(this) });
What you need to add after $ (this), so that when you hover the mouse on the input, it stands out, or rather its contents? The same effect is achieved by double-clicking on the input field.
$('input.input-qty').mouseover(function(){ $(this) });
What you need to add after $ (this), so that when you hover the mouse on the input, it stands out, or rather its contents? The same effect is achieved by double-clicking on the input field.
Source: https://ru.stackoverflow.com/questions/236203/
All Articles