We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Could we have a new field attribute 'scroll_right' => true that fires this JavaScript on the input field?
'scroll_right' => true
var foo = document.getElementById("foo"); foo.value = "http://stackoverflow.com/questions/1962168/scroll-to-the-very-right-of-a-long-text-input"; foo.focus(); foo.setSelectionRange(foo.value.length,foo.value.length);
The text was updated successfully, but these errors were encountered:
And maybe foo.blur() afterwards.
foo.blur()
Sorry, something went wrong.
Use case: in general the URL's beginning is always the same, the end will tell you something.
Good idea.
I posted a sample plugin which includes a custom field type implementing this feature.
You can simply click on the Download link in the following page to get the plugin. https://gist.github.com/michaeluno/d2e32c98f5bf710078ad
Please test it and see if any problems exist. Then it can be included in the core.
By the way, setSelectionRange() did not work in Chrome v35.
setSelectionRange()
No branches or pull requests
Could we have a new field attribute
'scroll_right' => true
that fires this JavaScript on the input field?The text was updated successfully, but these errors were encountered: