Created
October 12, 2017 13:59
-
-
Save brianpow/dccbc792ad485d5a9d5f514edf75599d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //https://www.lego.com/en-us/service/buildinginstructions/search | |
| //Please jQuerify first | |
| $("li.bi-result").each(function(){ | |
| let title=$("div.bi-top h4.title",this).next().text() + " - " + $("div.bi-top h4.title",this).text() | |
| $("a[download]",this).html(title) | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment