my uploaded JQ scripts
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-migrate-1.1.1.js"></script>
and my php code
echo '<div id="zakazat" onclick="GetOrder('.$row['title'].')">Заказать!</div>';
title have is string value : "test 1"
my simple js code
function GetOrder(param1){
alert(param1);
};
In the my function have error in FireBug with text: " SyntaxError: missing ) after argument list GetOrder(test 1)"
hov fix task?