-
1. Re: how to create a custom emailfield
resdesign Oct 28, 2012 4:26 PM (in response to sabermaster28)Try this:
var placeholder = sym.$("placeholder")
placeholder.html("");
inputEmail = $('<input />').attr({'type':'text', 'value':'', 'id':'email'});
inputEmail .css ('font-size', 14);
inputEmail .css ('width', 250);
inputEmail .appendTo(placeholder);
You can get the value of the input with: var myEmail = inputEmail.attr("value");
For example, below I get the value and display it in a field on a click event.
function updateTxt(){
var myEmail = inputEmail.attr("value");
sym.$("email").html(myEmail);
}
sym.$("btn").click(function(){
updateTxt();
});
-
2. Re: how to create a custom emailfield
sabermaster28 Oct 28, 2012 7:39 PM (in response to resdesign)im not sure i fully undertstood that explanation. could you possibly get a working version in edge and then post it for download .
-
3. Re: how to create a custom emailfield
resdesign Oct 28, 2012 8:12 PM (in response to sabermaster28)If I understand what you want - a fiel for an email address.
Here is a link to the sample: https://www.box.com/s/xvvr3vjw19rg0dunvj40
Otherwise, if this is not what you want, please explain.
-
4. Re: how to create a custom emailfield
sabermaster28 Oct 29, 2012 8:47 AM (in response to resdesign)I need somthing like the "leave a reply" section from this link. this what i meant when I said email field.
http://www.magpress.com/blog/introducing-adobe-edge-web-fonts-alternative-to-google-web-fo nts


