Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #590689

    Hi,

    I have created a customised template for a specific form. I need to show some response data after submitting the form. I am using ajax to achieve this.

    #590900

    Hey!

    You could use the Magnific Popup API to open a popup, in your JS code something like:

         $.magnificPopup.open({
              items: {
                  src: "#popup";
              },
              type: 'inline'
          });
    

    And the popup content:

    <div id="popup">Content</div>
    

    Regards,
    Josue

    #591426

    Thanks for the help. Worked out well…

    I realized that in my form the background of the select option is transparent in chrome but not in firefox. How can I achieve this?

    #591765

    Looks transparent on my end, make sure you’re running the latest version of FF.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.