Re: TypeError: $.get is not a function

2016-07-25 Thread ludovic coues
$.get look a lot like Jquery. Do you mind to share what version you are using ? You can find out with `alert($.fn.jquery)` 2016-07-25 16:34 GMT+02:00 Gergely Polonkai : > This sounds to be a JavaScript problem, which is not part of Django in any > ways. > > My idea, however, is that you don’t im

Re: TypeError: $.get is not a function

2016-07-25 Thread Gergely Polonkai
This sounds to be a JavaScript problem, which is not part of Django in any ways. My idea, however, is that you don’t import another JS file that contains the $ function (probably jQuery or Prototype?) Gergely Polonkai [image: https://]about.me/gergely.polonkai

TypeError: $.get is not a function

2016-07-25 Thread ajay
//In scirpt $('#suggest').keyup(function () { var query = $('#suggest').value; $.get("/search/", {suggest:query},function( data ){ $("#list").html( {% for item in search_list %} ''+{{ item }}+ '' {% endfor %} )