[Form] Contact form

Hey!

I really need to make my contact form work as it should (webflow style!). I’ve created the whole form in design mode and I really need to work on the contact form now. Any advices/help/tutorials? :wink:

~Bartek

www.myjbo.pl

What do you mean Bartek? What do you need help with regarding forms?

If you just want to add the email address where the email will come just go to setting for this website in the dashboard.

I didn’t notice the “FORMS” section in dashboard >.< Thanks! ;))) Working as a charm!

Of course you can :)

You just have to remember to change the form name of each form. When you create forms one by one they get the number at the end in the name. And when you have multiple forms on site you will be able to view them all in the site dashboard.;

Link :: http://forumhelp.webflow.com/ Question #1


Preview :: https://webflow.com/design/forumhelp?preview=7d7225924ead39e8d756436f8453e7cc


Code ::

$('.q2-step1-next').click(function(e) {
		e.preventDefault();
		$('.step1-input1').removeClass('warning');
		
		if( !$('.step1-input1').val() ) {
			$('.step1-input1').addClass('warning');
		} else {
			$('.step1').fadeOut(function() { $('.step2').fadeIn(); });
		}
	});
	$('.q2-step2-next').click(function(e) {
		e.preventDefault();
		$('.step2-input1').removeClass('warning');
		
		if( !$('.step2-input1').val() ) {
			$('.step2-input1').addClass('warning');
		} else {
			$('.step2').fadeOut(function() { $('.step3').fadeIn(); });
		}
	});
	$('.q2-step3-next').click(function(e) {
		e.preventDefault();
		$('.step3-input1').removeClass('warning');
		
		if( !$('.step3-input1').val() ) {
			$('.step3-input1').addClass('warning');
		} else {
			$('.step3').fadeOut(function() { alert('I\'m awesome. But you are awesome too! You are the person of the year 2006 in Times magazine ;) Don\'t you believe me? Check it on google!'); $('.step1').fadeIn(); });
		}
	});

Can you somehow get this up and running again? It seems promising :wink:

http://forumhelp.webflow.com/ Here it is. Question #2

1 Like

great, thanks @bartekkustra that’s awesome!

1 Like