Alcuinus

Deviant Art Calender Script (incomplete)

Apr 13th, 2011
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name           My da calander Script
  3. // @description    A brief description of your script
  4. // @author         Your Name
  5. // @include        http://today.deviantart.com/dds/*
  6. // @version        1.0
  7. // ==/UserScript==
  8.  
  9. //console.log($("body").html());
  10.  
  11. $("body").bind("DOMNodeInserted", function(e) {
  12.     console.log(e.target.nodeName);
  13.     jqNode = e.target;
  14.     if(e.target.nodeName == "DIV") {
  15.       console.log($(jqNode).find("div.dates"))
  16.       //console.log($("div.dates").find("a.f"));
  17.     }
  18. });
Advertisement
Add Comment
Please, Sign In to add comment