The code I have is as follows:
$('.signup-form-wrapper').css("style", "display: block");
$('.login-form-wrapper').css("style", "display: none");
I'm not sure why it's not working. The current appearance of the element is like this:
<div class="signup-form-wrapper form-wrapper" style="display: none;">
I want to change this style to display: block, how can I achieve that?