We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As shown in this Fiddle from this Stackoverflow question with a simple EJS script like this:
<table border="1"> <tr> <th>id</th> <th>name</th> <th>status</th> </tr> <!-- bind to changes in the todo list --> <% this.each(function( todo ) { %> <!-- add the todo to the element's data --> <tr <%= (el) -> el.data('todo',todo) %>> <td> <input type="checkbox" <%= todo.attr('complete') ? 'checked' : '' %>> </td> <td><%= todo.attr('name') %></td> <td><%= todo.attr('id') %></td> </tr> <% }) %> </table>
It seems as if the comments are the problem here.
The text was updated successfully, but these errors were encountered:
Commit a4de909 was a typo, I'm sorry.
Sorry, something went wrong.
5172329
ccummings
No branches or pull requests
As shown in this Fiddle from this Stackoverflow question with a simple EJS script like this:
It seems as if the comments are the problem here.
The text was updated successfully, but these errors were encountered: