1
0
mirror of https://github.com/Microsoft/sql-server-samples.git synced 2025-12-08 14:58:54 +00:00
Files
sql-server-samples/samples/development-frameworks/django/bootcamp/search/static/js/search.js
2016-11-08 13:10:49 -08:00

17 lines
463 B
JavaScript

$(function () {
$(".feed-results li").click(function () {
var feed = $(this).attr("feed-id");
location.href = "/feeds/" + feed + "/";
});
$(".articles-results li").click(function () {
var article = $(this).attr("article-slug");
location.href = "/articles/" + article + "/";
});
$(".questions-results li").click(function () {
var question = $(this).attr("question-id");
location.href = "/questions/" + question + "/";
});
});