3
When I open the page it breaks and when I open the browser console appears the following error:
Uncaught SyntaxError: Unexpected token ;
When I see the code on the console it appears this way:
if (linhaAnterior$.size() > 0) {}
But my code is actually like this:
if (linhaAnterior$.size() > 0) {}
I have others if
s in this code but only this one changes when I open the page.
Your tag of
<script/>
should contain the attributetype="text/javascript"
! Another thing, who handles the output for the browser? It seems that the>
are being converted to its HTML entity...– Zuul
I put the attribute but the message remains the same
– Guilherme Garcia Alves
The attribute was an observation to avoid problems, not exactly "the" solution! The question I asked you is that it can help me to help you :) (see my previous comment)
– Zuul