I have jquery script:
$("#theid").fadeTo(1000,0.01).getxmo().fadeTo(1000,1);
function getxmo(){
$('#output').append('okay!');
}
It is not running the function part…
What’s the correct syntax to run a function in this way please!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Rather than chaining the call to your
getxmo()function, put it in the callback function of the firstfadeTo()call:Example fiddle