I have two functions
/########### CARREGAR - LANÇAMENTO ###########/
var carregar_parametros=function(){
alert('asd');
}
/########### CADASTRAR - LANÇAMENTO ###########/
var cadastrar_parametro=function(){
if($("#lancamento").val()!=''){
UiLoading.show();
$.post('/paginas/teste/cadastrar_parametro',{
lancamento:$("#lancamento").val(),
tipo:$("#tipo").val(),
ativo:$("#lancamento_ativo").attr('checked')=='checked' ? '1' : '0'
},function(){
carregar_parametros();
UiLoading.hide();
$("#cancelar_parametro").click()
UiAlert('Parâmetro cadastrado com sucesso!','Atenção');
});
}else{
UiAlert('Por favor, preencha os campos nulos!','Atenção');
}
}
When I do the cadastrar_parametro
function with the comment
/########### CADASTRAR - LANÇAMENTO ###########/
does not give any error but when I do the carregar_parametros
function with the same comment style it gives error
Uncaught SyntaxError: Unexpected token ILLEGAL
And when I test Firefox's firebug extension it shows me this
SyntaxError: illegal character / ########### SIGNATURE - RELEASE
##### /
What can it be?