Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name My da calander Script
- // @description A brief description of your script
- // @author Your Name
- // @include http://today.deviantart.com/dds/*
- // @version 1.0
- // ==/UserScript==
- //console.log($("body").html());
- $("body").bind("DOMNodeInserted", function(e) {
- console.log(e.target.nodeName);
- jqNode = e.target;
- if(e.target.nodeName == "DIV") {
- console.log($(jqNode).find("div.dates"))
- //console.log($("div.dates").find("a.f"));
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment