Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Radiant with the mailer extension to provide a contact form on my website.

I'd like to display a nice "your email has been successfully sent" message after sending the email.
However Radiant seems to only allow redirect in it's configuration. Not to define flash messages.
Would you know of a way to define flash messages via the radiant mailer extension ?

share|improve this question

1 Answer

up vote 0 down vote accepted

Okey, I've been digging and resolved my problem with the following :

After sending an email, the redirected page has the anchor #mailer. So with a bit of javascript, I detect the presence of that anchor and I display the "thanks for your email" message".

Here's my code (using JQuery)

<script type="text/javascript">
    $(document).ready(function() {
        $('#flash').hide();
        if (window.location.href.match(/\#mailer/)) {
            $('#flash').html('Enter the message here');
            $('#flash').fadeIn(3000);
        }
    });
</script>

<div class="flash"></div>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.