heffaklump
heffaklump

Reputation: 1596

Jquery template if xx && if yy

Is there a

{{if something && if something_else}}lalala{{/if}}

in Jquery templates? I can't get it to work.

This works:

{{if something}}{{if something_else}}lalala{{/if}}{{/if}}

Upvotes: 1

Views: 3372

Answers (1)

AboQutiesh
AboQutiesh

Reputation: 1716

{{if something && something}}lalala{{/if}}

this should work

Upvotes: 1

Related Questions