1
vote
1answer
512 views
Problems with jquery append and json data
I'm having trouble making this work:
$(function() {
$(".button").click(function() {
var newentry = $("input#entry").val();
$.getJSON("/dictionary_request/", {entry: ne …
