Apr 29
John Torres JQuery Error Lasso 9.3
Apr 29, 2017; 23:31
John Torres
JQuery Error Lasso 9.3
New to integraty JQuery into a .lasso page. I'm not understanding the following error that Lasso server is sending back on the following code. The jquery works just fine on its own, but inside of a lasso page not so much. Any ideas why the CARET "^" error?
Error:
An unhandled failure during a web request
Error Code: -1
Error Message: Parser error. //Library/FileMaker Server/HTTPServer/htdocs//lasso/central/hot/New_index.lasso: Error while parsing. Unexpected: CARET line: 110, col: 16
<script type="text/javascript" src="/lasso/js/jquery-3.2.1.min.js"></script>
<script>
$('input[class^="Day"]').click(function() {
var $this = $(this);
if ($this.is(".Day0")) {
if ($(".Day0:checked").length > 0) {
$(".Day1").prop({ disabled: true, checked: false });
$(".Day2").prop({ disabled: true, checked: false });
$(".Day3").prop({ disabled: true, checked: false });
} else {
$(".Day1").prop("disabled", false);
$(".Day2").prop("disabled", false);
$(".Day3").prop("disabled", false);
}
} else if ($this.is(".class2")) {
}
});
</script>
#############################################################
This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>
Apr 29
Steffan Cline Re: JQuery Error Lasso 9.3
Apr 29, 2017; 20:46
Steffan Cline
Re: JQuery Error Lasso 9.3
Apr 29
Steve Piercy - Website Builder Re: JQuery Error Lasso 9.3
Apr 29, 2017; 20:53
Steve Piercy - Website Builder
Re: JQuery Error Lasso 9.3
Apr 30
John Torres Re: JQuery Error Lasso 9.3
Apr 30, 2017; 00:00
John Torres
Re: JQuery Error Lasso 9.3
Apr 30
Jolle Carlestam Re: JQuery Error Lasso 9.3
Apr 30, 2017; 14:21
Jolle Carlestam
Re: JQuery Error Lasso 9.3