mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
17 lines
463 B
JavaScript
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 + "/";
|
|
});
|
|
|
|
}); |