I have the following problem with javascript
And this is the code
$(function(){
$.post("../php/cargar_marcas.php", function(data){
$("#marca").html(data);
});
});
The truth is that I have always done it, the php script works correctly, but I do not know why it is marking me an error in the first line, I have done other functions as well and it is not a problem, I would greatly appreciate your help.