autofill

Autofill a form of another website and send it

牧云@^-^@ 提交于 2019-11-28 05:55:34
问题 I searched the web and found nothing. On the website, there is a Input box for a E-Mail address. I would like to fill this field with an e-mail address and the send the form. Then i will get the whole source code from the website. I don't wanna give this to the URL like "?myvar=test&myvar2=test2". I searched for examples for CURL, but found nothing. I only want fill the form, send it, and get the source code. Or is there an addon for firefox or a free program? With best regards KalTo 回答1: You

Disable autofill on a web form through HTML or JavaScript?

懵懂的女人 提交于 2019-11-28 00:42:46
Is there a way to disable autofill in Chrome and other browsers on form fields through HTML or JavaScript? I don't want the browser automatically filling in answers on the forms from previous users of the browser. I know I can clear the cache, but I can't rely on repeatedly clearing the cache. You can do it at the input level in HTML by adding "autocomplete="off" to the input. http://css-tricks.com/snippets/html/autocomplete-off/ You could also do it via JS such as: someForm.setAttribute( "autocomplete", "off" ); someFormElm.setAttribute( "autocomplete", "off" ); jQuery one: $(".indication

How to detect when user used Password AutoFill on a UITextField

自作多情 提交于 2019-11-28 00:12:12
问题 I've implemented all the app and server changes necessary to support Password Autofill on iOS 11, and it works well. I'd like it to work a little better. My username and password fields are UITextFields. I would like to identify when a user has "autofilled" one of the two UITextFields, so I can progress to the next step. Currently the user autofills an item, then needs to press the "Next" button on the on-screen keyboard in order to advance. I'd like to trigger this on behalf of the user. The

Browser Autofill and Javascript triggered events

时光总嘲笑我的痴心妄想 提交于 2019-11-27 17:34:46
问题 One of our users just brought up the fact that their browsers Autofill doesn't cause JS onChange events to fire; this causes a problem with user registration for us. Is this by design? Is there a way to work around it? 回答1: One solution I have been using occasionally is to check whether the value of the field/input/select differs from it's defaultValue. defaultValue would be the value that was originally in the markup, and value is the current value aka selected or entered value. This would

Disabling Safari autofill on usernames and passwords

瘦欲@ 提交于 2019-11-27 11:53:24
You might already know, that Safari has a nasty autofill bug where it fills email, username and password fields no matter if you set autocomplete="off" or not. Here's a basic form: <form action="/" method="post"> <p> <label>E-mail</label> <input type="text" name="email" value="" /> </p> <p> <label>Password</label> <input type="password" name="password" value="" /> </p> </form> ...Safari autofills those fields on page load like it should, job well done! If you put autocomplete="off" to the fields and/or the form element, Safari still autofills those fields: <form action="/" method="post"

Form field names used by personal data auto-fill in browsers (Safari, Opera)

余生颓废 提交于 2019-11-27 09:25:20
问题 I'm looking for complete list of form field names ( <input name="…"> ) that are recognized by auto-fill functions in major browsers. Here are some I've found to work in Safari using trial-and-error: email Ecom_ReceiptTo_Postal_Name_First Ecom_ReceiptTo_Postal_Name_Last first-name firstname last-name lastname full-name birthday company jobtitle phone street city country state (used for county outside US) postalcode zip However I couldn't find separate field for title/honorific prefix (it's

Is it possible for a UIWebView to save and autofill previously entered form values (e.g., username & password)?

倾然丶 夕夏残阳落幕 提交于 2019-11-27 06:14:19
I'm building an iPhone app that is just a UIWebView of an existing mobile site that has a form-based login. When I login to the mobile site on iPhone Safari, I'm prompted to save my username/password, and it's then autofilled when I go back to the site later. I'd like to enable the same functionality in the UIWebView , but for the life of me, I can't figure out how to do it. Any ideas? Solution Following Michael's basic model (see accepted answer), I was able to get this done. Here's what I did: SETTING DATA - (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *

Prevent textbox autofill with previously entered values

假如想象 提交于 2019-11-27 05:13:58
I have an asp page with some Textbox controls on it. By default, the browser will suggest previously entered values for each box. I'd like to prevent that behavior for some of the textboxes. Is there a way to reliably do that across all major browsers? I've tried setting AutoCompleteType="Disabled" But that seems to have no effect in Firefox. Here is an image of the behavior I'm trying to prevent. For firefox Either: <asp:TextBox id="Textbox1" runat="server" autocomplete="off"></asp:TextBox> Or from the CodeBehind: Textbox1.Attributes.Add("autocomplete", "off"); Autocomplete need to set off

Disable autofill on a web form through HTML or JavaScript?

我的未来我决定 提交于 2019-11-26 21:49:01
问题 Is there a way to disable autofill in Chrome and other browsers on form fields through HTML or JavaScript? I don't want the browser automatically filling in answers on the forms from previous users of the browser. I know I can clear the cache, but I can't rely on repeatedly clearing the cache. 回答1: You can do it at the input level in HTML by adding "autocomplete="off" to the input. http://css-tricks.com/snippets/html/autocomplete-off/ You could also do it via JS such as: someForm.setAttribute

Disabling Android O auto-fill service for an application

喜欢而已 提交于 2019-11-26 20:30:28
Android O has the feature to support Auto-filling for fields. Is there any way I can disable it for a specific application. That is I want to force my application not to use the auto-fill service. Is it possible ? To block autofill for an entire activity, use this in onCreate() of the activity: getWindow() .getDecorView() .setImportantForAutofill(View.IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS); Is there any better method than this ? Is it possible ? Not that I am aware of. Certainly, nothing is documented. Is there any better method than this ? Not that I am aware of. albeee Currently