I am making a page with three buttons and have three different text fields. I am trying to use this function:
function funName() {
$(this).show({
'left': '-=700px'
});
}
for three different $("#IDs"). to display different boxes of text.
Iv tried
$("btnElement").click(function() {
$("#ID1").funName();
});
Thank you for your help.