Need help identifying contact plugin!

Hi all, I’m looking for something similar (or pretty much exactly the same) to the contact form in the banner for the following site: https://www.wmegroup.com.au/

I can’t seem to find a plugin on codecanyon to make a form like the one on the WME Group site. Basically, I like that there’s a dropdown and once an item is selected, a contact form slides/transitions in from the right where you can input your details.

Help! It’s been 48 hours and I can’t find anything :frowning:

It’s a custom form they have built BUT it’s so simple to replicate but I don’t think any plugin does it off the hat.

When you choose an option to start with, all it does with Javascript is hide the original form and show the next which you can do with something like

$('.button').click(function(){
 $('.first').hide('slow');
 $('.second').show('slow');
});

.button is the button to “submit” the first form…

You can add that to any form plugin such as Contact Form 7, Gravity Forms, Formidable etc, but will require some coding knowledge to implement it.

Thanks so much! :slight_smile: I’ll look a little further into it. Cheers!

jQuery(’.button’).on(‘click’,function(){

});

Do not use click event, You will get for sure soft reject for this, always use .on(‘click’ .on('mouseenter … etc :wink: