Created
November 25, 2012 04:14
Revisions
-
brisbanewebdeveloper revised this gist
Dec 15, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -18,7 +18,7 @@ I have been using this bookmarklet for standard game and you can use it for othe Following example shows the case you want to purchase 6 games: 6,18,22,25,35,42|3,11,27,36,37,43|6,17,20,40,43,45|19,20,25,26,27,28|6,13,27,29,40,45|2,13,17,22,41,42 2. Go to [Golden Casket Saturday Lotto](https://tatts.com/goldencasket/buy-lotto/purchase-ticket?product=GoldLottoSaturday). -
brisbanewebdeveloper revised this gist
Nov 25, 2012 . 1 changed file with 13 additions and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,14 +1,22 @@ This bookmarklet sets the numbers from data separated by comma automatically for the following URL: [Golden Casket Saturday Lotto](https://tatts.com/goldencasket/buy-lotto/purchase-ticket?product=GoldLottoSaturday) This bookmarklet is useful if you have specific numbers to purchase a ticket. This bookmarklet is useless if you buy a ticket with QuickPick game. I use this on Google Chrome in my iMac. I have been using this bookmarklet for standard game and you can use it for other games like system 7. **How to use** 1. Create a list of numbers you want to purchase. Each number has to be separated by comma. Each game has to be separated by the symbol pipe (|). Following example shows the case you want to purchase 6 games: 6,18,22,25,35,42|3,11,27,36,37,43|6,17,20,40,43,45|19,20,25,26,27,28|6,13,27,29,40,45 -
brisbanewebdeveloper revised this gist
Nov 25, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ This bookmarklet sets the numbers from data separated by comma automatically for the following URL: [Golden Casket Saturday Lotto](https://tatts.com/goldencasket/buy-lotto/purchase-ticket?product=GoldLottoSaturday) This bookmarklet is useful if you have specific numbers to purchase a ticket. This bookmarklet is useless if you buy a ticket with QuickPick game. I use this on Google Chrome in my iMac. I have been using this bookmarklet for standard game, but I think you can use it for other games like system 7. How to use -
brisbanewebdeveloper revised this gist
Nov 25, 2012 . No changes.There are no files selected for viewing
-
brisbanewebdeveloper revised this gist
Nov 25, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ This bookmarklet sets the numbers from data separated by comma automatically for the following URL: [Golden Casket Saturday Lotto](https://tatts.com/goldencasket/buy-lotto/purchase-ticket?product=GoldLottoSaturday) This bookmarklet is useful if you have specific numbers to purchase the ticket with. This bookmarklet is useless if you buy the ticket with QuickPick game. I use this on Google Chrome in my iMac. I have tested for standard game, but I think you can use it for other games like system 7. How to use -
brisbanewebdeveloper created this gist
Nov 25, 2012 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ javascript:function s(){var data = prompt("Search Text", "").split('|'); var listItems = $('.gameSelectionsDiv'); listItems.each(function() { var items = $(this).find('input.gameSelection'); var d = data[listItems.index(this)].split(','); items.each(function() { var index = items.index(this); console.log(index, d[index]); $(this).val(d[index]); }); });}s();void(0) 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ This bookmarklet sets the numbers from data separated by comma automatically for the following URL: [Golden Casket Saturday Lotto](https://tatts.com/goldencasket/buy-lotto/purchase-ticket?product=GoldLottoSaturday) This bookmarklet is useful if you have specific numbers to purchase the ticket with. This bookmarklet is useless if you buy the ticket with QuickPick game. I use this on Google Chrome in my iMac. How to use 1. Create a list of numbers you want to purchase. Each number has to be separated by comma. Each game has to be separated by the symbol pipe (|). Following example shows the case you want to purchase 6 games: 6,18,22,25,35,42|3,11,27,36,37,43|6,17,20,40,43,45|19,20,25,26,27,28|6,13,27,29,40,45 2. Go to [Golden Casket Saturday Lotto](https://tatts.com/goldencasket/buy-lotto/purchase-ticket?product=GoldLottoSaturday). 3. Click "Mark your own games" tab. 4. Select "games". In this example you select 6. 5. Click the bookmarklet and paste the list in step 1. New line code should not be contained, I think.