Skip to content

Instantly share code, notes, and snippets.

View Yoplitein's full-sized avatar
🔈
[screaming]

Steven Dwy Yoplitein

🔈
[screaming]
View GitHub Profile
@Yoplitein
Yoplitein / gist:6025802
Created July 18, 2013 00:33
Fetches a list of Steam workshop IDs from a collection.
(function($)
{
var results = [];
$("a div.workshopItemTitle").each(function(index, value)
{
results.push($(value).parent().attr("href").split("?id=")[1]);
});
alert(results.join("\n"));