Forum Replies Created
- AuthorPosts
hortondesigns
ParticipantProblem 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.
hortondesigns
ParticipantI 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 9, 2014 at 2:20 am in reply to: Passing of entire array from process.php to a "Thank You" page #11167hortondesigns
ParticipantAlly your last post worked great! Thanks!
How would you pass the <?php echo Quform::escape($mailer->Subject); ?> like used in the notification.php file to the autoreply.php and a thanks.php file.
If I need to open another topic, I can. I hope to catch onto php better. My thank-you.php file is attached.
April 14, 2014 at 9:24 pm in reply to: Passing of entire array from process.php to a "Thank You" page #9585hortondesigns
ParticipantHow would you pass a multidimensional array with the label and variable to the redirect page? Then basically loop through “foreach” element like the notification.php file.
<?php echo Quform::escape($element->getLabel())?>
<?php echo $element->getValueHtml(); ?>The redirect http://www.example.com/thanks.php can handle redirects from other forms.
January 17, 2014 at 5:42 am in reply to: Filter options (Advanced) in regards to "allowWhiteSpace" #8328hortondesigns
ParticipantThanks Ally! My form is working properly without any errors. 🙂
January 6, 2014 at 7:03 pm in reply to: Adding a Reset button function which clear Error messages #8111hortondesigns
ParticipantThat’s exactly what I was looking for to reset and clear form of error messages. Thank you!
- AuthorPosts