• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Timer for test on line

Timer for test on line 9 years 6 months ago #32940

  • acg
  • acg's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Hallo!

I want to know if it's possible to create a countdown module wich shows in the frontend a timer with the countdown and when the countdown end it automatically submit the form at the end of the time.

Could anyone suggest me something?

Thank you very much and have a nice day.
The administrator has disabled public write access.

Timer for test on line 9 years 6 months ago #32955

  • cosmin.cristea
  • cosmin.cristea's Avatar
  • OFFLINE
  • Platinum Boarder
  • Posts: 756
  • Thank you received: 144
you can automatically submit the form after a pre-defined period of time can be done through Javascript. Example:
<script type="text/javascript">
	setTimeout("document.getElementById('userForm').submit()", 10000);
</script>

You can find out more information on the setTimeout function here.

Documentation for RSForm!Pro Javascript can be found at this url : https://www.rsjoomla.com/support/documentation/rsform-pro/customizing-rsform-pro/css-and-javascript.html

PS: The countdown functionality is not built-in RSForm!Pro, you will have to custom script it.
My help is not official customer support. To receive your support, submit a ticket by clicking here
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!