Posts by Breno Zupeli • 11 points
2 posts
-
0
votes2
answers295
viewsA: Javascript variable inside the EJS tag
You can use <%= variavel %> or <%- variavel %>. The difference between the two modes is that <%- variavel %> interprets HTML code, while <%= variavel %> nay. Source…
-
1
votes1
answer354
viewsA: Modal does not rise when called by jquery
In your HTML I did not find any element with modal id. But according to your example, this should work to display the modal within jquery no change: $('#myModal').modal('show'); If you want to close…