Tagged Questions
3
votes
2answers
793 views
Can jQuery.getJSON put a domain's cookies in the header of the request it makes?
(Note: See also the related question Can browsers react to Set-Cookie specified in headers in an XSS jquery.getJSON() request?)
I can't seem to set a cookie (whose name is mwLastWriteTime) in the ...
2
votes
1answer
64 views
Cannot export extra data from Freebase using Jquery
A newbie question,
I am trying to use Freebase Suggest as a tagging resource for my Django project. I want to extract item name, type and id. For example, as you can see in the screenshot, I want to ...
2
votes
1answer
53 views
Remove type inside the freebase suggested list
Is it possible to remove the type of research (for example 'Film'), inside the list of items returned from freebase jQuery suggestion?
Thanks for your attention.
Simone
2
votes
1answer
103 views
Freebase select all cities from administrative division
Any ideas on how to select all citytowns from certain administrative division? Can be any country. Tried to search by fips_10_4_region_code but can't get it working, it seems that /location/citytown ...
2
votes
1answer
424 views
Multiple jQuery functions & Autocomplete
I found that using declaring jQuery Autocomplete as the first function in your script prevents other functions from being executed.
The second and third functions below will not work:
...
1
vote
1answer
40 views
Display data from common topic in Freebase using jQuery
I am playing around with Freebase and have had some decent success, but have hit a wall. My MQL is below. I do not have any issue displaying name,latin name, etc, which I created in my base. I do not ...
1
vote
1answer
29 views
Feebase Search Service jQuery call breaks when filter is added
I am calling the freebase Search Service with jQuery in my code like this
$.ajax({
url: "https://www.googleapis.com/freebase/v1/search",
data: {filter: afilter,
query: aquery,
...
1
vote
1answer
64 views
Freebase Suggest with Chosen Plugin multiple selection
I am trying to use the Freebase Suggest plugin along with Chosen to create a multi-tag system. Something similar to stackoverflow's tagging system but pulled from Freebase.
Any pointers or is there ...
1
vote
1answer
174 views
JSONP Freebase for autocomplete jquery plugin
This comes from Parse JSON Freebase results in PHP
But since its possible to do it in Javascript using JSONP, I would liek to know how.
So, I'm using this jquery Autocomplete plugin: ...
1
vote
1answer
160 views
How to customize display url after jquery POST?
I'm using Freebase Suggest, a JQuery search form:
<script type="text/javascript">
$(function() {
$("#game-search").suggest({type:'/games/game'}).bind("fb-select", function(e, data) {
...
1
vote
1answer
117 views
Freebase suggest - can it use a remote database?
I came across the Freebase suggest tool and i really like it. Is there a way to apply that to a site and have it use a remote database? I'm not finding out how to do that, I see in their API they have ...
1
vote
2answers
85 views
JQuery search no longer working
I cannot figure out why this isn't working. It's a JQuery search box that uses the Freebase API to find games. When I POST, the gameID and gameName are blank.
<link type="text/css" ...
1
vote
2answers
107 views
how to make an autosuggest like freebase
i need to make an sutosuggest similar to freebase ...i need to know how can i treansfer the datas from my db
<script type="text/javascript">
$(function() {
...
1
vote
1answer
135 views
With Freebase Suggest how do I filter one field based on the selection of another
If I'm using Freebase Suggest ( http://wiki.freebase.com/wiki/Freebase_Suggest ) and I have one field that selects either Country or State, how do I then have another field "City" filter to display ...
1
vote
1answer
94 views
Freebase suggest: how to get results in other language
I need to get a list of cities in french for freebase suggest.
I'm trying something like
$(".location_input").suggest({type:'/location/citytown', name: [{ lang: '/lang/fr'}] } );
or
...
0
votes
2answers
97 views
Converting & to & using Jquery/JS
A lot of answers to this question are to use replace() but I need a generic solution.. I am using an API and I get some JSON code, I use JQuery's $.each to go through the data but then the ampersands ...
0
votes
0answers
91 views
Clash Between Freebase Suggest and jquery-slick-plugin
I installed 3 plugins; Jquery-slick-plugin (Slick), jquery.editable-1.3.3 (Editable), and Freebase Suggest (http://www.freebase.com/docs/suggest).
All of them are jQuery based and i'm using the ...
0
votes
2answers
502 views
Can browsers react to Set-Cookie specified in headers in an XSS jquery.getJSON() request?
(Note: This is a follow up to my question Can jQuery.getJSON put a domain's cookies in the header of the request it makes? and covers the XSS case of Setting a cookie in an AJAX request?)
I've been ...
0
votes
1answer
199 views
Dynamic mql_filter on Freebase Suggest
Is it possible to dynamically add an mql_filter to constrain results from a Freebase Suggest control?
$(function() {
$("#button").onclick(function() {
// add an mql_filter to #film, a ...