I Did something here and I just like to make the input slide from right to left.
I used simple code to show and hide the input field ,
$("#edit-search-block-form--2").animate({width:'toggle'},500);
Any help.
Thanks
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.
As i understood your question is to slide the text input from right to left.
jQuery doesn’t provide to slide an element from left or from right, so you can achive this with animate method which jQuery provides.
This is the way i implemented this:
you can check a fiddle here: