Home › Forums › Quform PHP › Display success or error message above the form
- This topic has 4 replies, 3 voices, and was last updated 10 years, 2 months ago by CharkR.
- AuthorPosts
- February 20, 2014 at 12:40 pm #8807swisskudParticipant
Is there a way to display success or error message above the form, not on an other php page
February 20, 2014 at 12:56 pm #8808swisskudParticipantSorry it works like that by default, i have added “jQuery.noConflict();” in scripts.js, i just delete it and works normally
June 16, 2014 at 1:26 am #11383hortondesignsParticipantI am using multiple jQuery scripts which use different jQuery version. In order to fix conflicts, I have used “jQuery.noConflict();” and even created multiple variables “var jq142 = jQuery.noConflict();”.
As a result, the required error messages appear on an other php page. I tried adding “jQuery.noConflict();” to the top of scripts.js but the error messages still appear on separate php page.
Do you have any recommendations so the required error messages reappear above the input text fields and not on a separate page?
June 18, 2014 at 2:37 am #11448hortondesignsParticipantProblem Example: I have disabled all my other jQuery except the following jQuery and required error messages appear on a separate page. Without the “jQuery.noConflict();” the jQuery script carousel breaks. I have tried moving the jQuery script after the form because the carousel appears near the bottom of page. However, the problem still occurs.
<!– image carouFredSel or slider –>
<script type=”text/javascript” language=”javascript”>
jQuery.noConflict();
(function( $ ) {
$(function() {
$(“#foo1”).carouFredSel({
auto : {
items : 4,
duration : 9500,
easing : “linear”,
timeoutDuration : 0,
pauseOnHover : “immediate”
}
});
});
})( jQuery );
</script>Any recommendations would be appreciated.
September 10, 2014 at 6:42 pm #12387CharkRParticipantI’m having the same issue, I have multiple scripts on my page, that each require a different version of jquery, and I’ve tried to disable all but the one required by QuForm and my other jquery items stop working, and I tried disabling the 1.8.3 version and using the 1.10.2 the other script needs and it doesn’t display the success message on the page with the form and instead displays it on the configuration/process page.
- AuthorPosts
- You must be logged in to reply to this topic.