![](https://static.wixstatic.com/media/11062b_2930f0e349514b0091ea314986f47039~mv2_d_3000_1688_s_2.jpg/v1/fill/w_980,h_551,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/11062b_2930f0e349514b0091ea314986f47039~mv2_d_3000_1688_s_2.jpg)
Everyone loves a smooth interaction for their websitesđ
In this tutorial, I will be sharing the code on how to set up a toggle state using animated buttons with Wix animation.
Wix animation has been out there for a while now and it is unbelievable how much you can use it for animating elements on your website.
Elements Used
Multi-state box
Buttons
Box
đş WATCH THE VIDEO
COPY CODE BELOW đđ˝
Code
Leave a comment (1)
Thanks for leaving a commentđ
![ahmed](https://static.wixstatic.com/media/66174d_f73b581d5eb64acfb138f4772c18c5e5~mv2.jpg/v1/fill/w_68,h_9,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Spring%20Fashion.jpg)
ahmed
May 19, 2024
wix form data
Hi i need your help also in wix form submission
the problem is that some fields are generated when $w.onReady(function () { like day & date and when i choose the student name i get the phone number from database .
and the form save only the field u fill it by ur self like input or dropdown
Reply
![Walter Odibi](https://static.wixstatic.com/media/248526_e3e76b23983d4707b5f3ec982ad49968~mv2.jpg/v1/fill/w_48,h_36,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Portrait%20of%20Smiling%20Man.jpg)
Walter Odibi
January 20, 2000
![bromar](https://static.wixstatic.com/media/f67333_cd19abb27fc144adaedb24c59565fd1a~mv2.jpg/v1/fill/w_68,h_43,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Spring%20Fashion.jpg)
bromar
Sep 29, 2023
Love the tutorial!!!
You are truly great at creating these instructional videos!! Thank you! I am having trouble figuring out . . 'the triggered email' . . it is not being sent to the user submitting the form, the form and the email to the admin works great. . Could you point me to where this might have already been addressed? or any other help? On a second note. .the submit button success/failure message will go back to the default message once it's connected to the data set(I couldn't figure that out either. )
Reply
![Walter Odibi](https://static.wixstatic.com/media/248526_e3e76b23983d4707b5f3ec982ad49968~mv2.jpg/v1/fill/w_48,h_36,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Portrait%20of%20Smiling%20Man.jpg)
Walter Odibi
January 20, 2000
![kaan](https://static.wixstatic.com/media/b243fe_cc719a1938c3406f96113b5493f24a5e~mv2.png/v1/fill/w_68,h_37,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/Spring%20Fashion.png)
kaan
Jun 4, 2023
wishlist and rating system
hello sir I try today 2 hours but not working if you want I pay money can you do this 2 ( wishlist and rating star) system please I send to you invaid
Reply
![Walter Odibi](https://static.wixstatic.com/media/248526_e3e76b23983d4707b5f3ec982ad49968~mv2.jpg/v1/fill/w_48,h_36,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Portrait%20of%20Smiling%20Man.jpg)
Walter Odibi
January 20, 2000
Hi there, you can contact me here using the in-app chatbox
![Waqas](https://static.wixstatic.com/media/cf9925_1619008cbbe44e0e9f2e14c86082ab5b~mv2.jpg/v1/fill/w_68,h_60,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Spring%20Fashion.jpg)
Waqas
Apr 16, 2023
Triggered Email Backend
Hi mate please can you send email by backend
Reply
![Walter Odibi](https://static.wixstatic.com/media/248526_e3e76b23983d4707b5f3ec982ad49968~mv2.jpg/v1/fill/w_48,h_36,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Portrait%20of%20Smiling%20Man.jpg)
Walter Odibi
January 20, 2000
Hi Waqas, there isn't a backend code for this tutorial. The emails will be sent from the client-side.
![Ghan](https://static.wixstatic.com/media/5d1e91_72eef1ae397546c48797ab8c2318261b~mv2.png/v1/fill/w_68,h_43,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/Spring%20Fashion.png)
Ghan
Dec 29, 2022
Great Tutorial
Hi !
First of all, I want to thank you for your great tutorials, they helped us a lot with the coding.
But I still need your help, if you don't mind. I have based on Save Calculated Field using Wix Data Hooks Codes, to code my form . but the problem is I don't know why the code only reads the computation for "week2" computation and not the "weeks"
here is the code
I also did a separate column in the dataset where the chosen datas for both fields will be placed.
$w.onReady (() => {
$w("#Person").onChange(() => {
$w("#weeks").onChange(() => {
$w("#week2").onChange(() => {
let person = Number($w("#Person").value);
let weeks = Number($w("#weeks").value);
let week2 = Number($w("#week2").value);
$w("#totalLabel").show();
$w("#totalLabel").text = `"${String(weeks * Number(person))}íě"`; //DESIGN YOUR MESSAGE
$w("#totalLabel").text = `"${String(week2 * Number(person))}íě"`; //DESIGN YOUR MESSAGE
});
});
});
});
Reply
![Walter Odibi](https://static.wixstatic.com/media/248526_e3e76b23983d4707b5f3ec982ad49968~mv2.jpg/v1/fill/w_48,h_36,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Portrait%20of%20Smiling%20Man.jpg)
Walter Odibi
January 20, 2000
Hi there, thanks for your comment. I see why this is a problem. The onChange() function seems wrong in combination.
To combine onChangeFunctions use this method
$w("#Person, #weeks, #weeks2").onChange(() => {
//code here
});
![Walter](https://static.wixstatic.com/media/010eb4_e079bf51f54445f3a681f9d78d2f4eb3~mv2.jpg/v1/fill/w_68,h_29,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Spring%20Fashion.jpg)
Walter
Aug 8, 2022
More Details? Watch video
Hi, you can click here to watch the video https://www.youtube.com/watch?v=9bx7-nBeZ5c
Reply
![Walter Odibi](https://static.wixstatic.com/media/248526_e3e76b23983d4707b5f3ec982ad49968~mv2.jpg/v1/fill/w_48,h_36,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Portrait%20of%20Smiling%20Man.jpg)
Walter Odibi
January 20, 2000
![Walter](https://static.wixstatic.com/media/010eb4_fac1b360882a45f094cce8682885376e~mv2.jpg/v1/fill/w_68,h_29,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Spring%20Fashion.jpg)
Walter
Jul 11, 2022
For you
đş WATCH THE VIDEO https://www.youtube.com/watch?v=AgPJEU8wpp0
Reply
![Walter Odibi](https://static.wixstatic.com/media/248526_e3e76b23983d4707b5f3ec982ad49968~mv2.jpg/v1/fill/w_48,h_36,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Portrait%20of%20Smiling%20Man.jpg)
Walter Odibi
January 20, 2000
![Walter Odibi](https://static.wixstatic.com/media/010eb4_bc884c5c83aa48c29e59e09db563c6af~mv2.jpg/v1/fill/w_68,h_29,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Spring%20Fashion.jpg)
Walter Odibi
Apr 18, 2022
Awesome Feature
This tutorial shows you how to display views on your Wix repeater.
đşWATCH VIDEO HERE https://www.youtube.com/watch?v=Iz7SdaCSdXg
Reply
![Walter Odibi](https://static.wixstatic.com/media/248526_e3e76b23983d4707b5f3ec982ad49968~mv2.jpg/v1/fill/w_48,h_36,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Portrait%20of%20Smiling%20Man.jpg)
Walter Odibi
January 20, 2000
![Walter Odibi](https://static.wixstatic.com/media/010eb4_63f95faabd054ad1b51adf0889d414b3~mv2.jpg/v1/fill/w_68,h_51,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Spring%20Fashion.jpg)
Walter Odibi
Apr 18, 2022
Amazing tutorial
This amazing tutorial will show you how to a comment section to your WIX dynamic page.
đşWATCH VIDEO HERE https://www.youtube.com/watch?v=f8-vJQFNZ_c
Reply
![Walter Odibi](https://static.wixstatic.com/media/248526_e3e76b23983d4707b5f3ec982ad49968~mv2.jpg/v1/fill/w_48,h_36,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Portrait%20of%20Smiling%20Man.jpg)
Walter Odibi
January 20, 2000
![Walter Odibi](https://static.wixstatic.com/media/010eb4_c0fca5799fb24c0abd841c02997b9e43~mv2.jpg/v1/fill/w_68,h_29,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Spring%20Fashion.jpg)
Walter Odibi
Apr 10, 2022
Great Featuređ
This amazing tutorial will show you how to add a visitor view counter to your WIX dynamic page.
đŠMORE TUTORIALS https://www.wixgenius.com/wix-tutorials
Reply
![Walter Odibi](https://static.wixstatic.com/media/248526_e3e76b23983d4707b5f3ec982ad49968~mv2.jpg/v1/fill/w_48,h_36,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Portrait%20of%20Smiling%20Man.jpg)
Walter Odibi
January 20, 2000