Auto Fill Form Field with URL Address
I've been trying to figure this out for about an hour, but I can't seem to get it; thus i run to the professionals.
I would like to fill out the "New To Kyani" side of the form, under the sponsor ID and put the numbers "1234567".
I would like this done through the URL so that my new customers would not have to worry about filling that in and accidentally transposing numbers.
The web address is as follows: https://shop.kyani.net/en-us/#/welcome
What I have found is that I need to identify the form field name, but my limited knowledge is preventing me from finding it; I know one of you can do this in about 10 seconds. Thank you for your knowledge and help ahead of time.
Thanks,
IGPOD
Re: Auto Fill Form Field with URL Address
Hi,
i dont think i understand your problem clearly , but if u trying to give a default value to ur sponsor field , look for this id "ember926" , or the placeholder "Sponser ID" , then at the end add this : value="1234567"
so the input box will look like this
HTML Code:
<input id="ember926" class="ember-view ember-text-field form-control" type="text" placeholder="Sponsor ID" value="1234567">
goodluck
:duck:
Re: Auto Fill Form Field with URL Address
I'm trying to auto fill the Sponsor ID with 1234567 through the URL; when a visitor clicks on a link from my capture page they have to manually input my ID.
Re: Auto Fill Form Field with URL Address
Do you have control over the URL? Do you have control over the other page?
The short of it is that it can only work if you either have control over the target page, and/or the page was built to look for the value in the url in the first place.
Secondly even if the above is supported, unless you can change the URL itself, then it doesn't matter...
-tg
1 Attachment(s)
Re: Auto Fill Form Field with URL Address
Ok... I was unaware of that...
This URL is not working for some reason: https://shop.kyani.net/en-us/#/welcome?ember765=1234567 but I guess I know why now.Attachment 136709
Re: Auto Fill Form Field with URL Address
The field doesn't appear to be static. It is now "ember801" vs "ember765" and PC Monk's "ember926"
Re: Auto Fill Form Field with URL Address
My guess is that they have the field name rolling to prevent this very thing.
Which I find a bit odd since I checked their TOS, and there isn't anything explicitly prohibiting it.
meh... I looked into it a little bit... looks like the changing name is part of the Ember Open Auth module for ember applications (which that site is) ... it ties the login submission to a session... I tried to look for a combination that would work, even dove into the Ember and Ember Open Auth docs.... there's nothing there...
so.... my guess is that you're outta luck in this case.
-tg
Re: Auto Fill Form Field with URL Address
dont u have access to the source code ?funny yesterday was 926 but now the id is 765 , i refreshed the page but still the same
* you cant just put the number in the url and expect the program to understand what to do with it, you MuST have access to the source code to write a bit of code. ( thats if you want to do it with url)
* if you do have access to the source code , dont worry about the id , just find the inputbox and add the value , (thats if the number is static and u dont wanna do it over the url)
if u dont have access to the source code like tg said your outta luck ,:(
Re: Auto Fill Form Field with URL Address
well, it sounds like he's in control of the URL part ... the rest, not so much. It will only work over the URL if the page was programmed to look for it. It doesn't look like this is the case. Also, given that this is in a web browser (chrome by the look of the screenshot) ... there isn't a way to "find the inputbox and add the value"... so, he's pretty much outta luck.
-tg