Skip to content

Instantly share code, notes, and snippets.

@brisbanewebdeveloper
Created November 25, 2012 04:14

Revisions

  1. brisbanewebdeveloper revised this gist Dec 15, 2012. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion readme.md
    Original 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
    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).

  2. brisbanewebdeveloper revised this gist Nov 25, 2012. 1 changed file with 13 additions and 5 deletions.
    18 changes: 13 additions & 5 deletions readme.md
    Original 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, but I think you can use it for other games like system 7.
    This bookmarklet is useful if you have specific numbers to purchase a ticket.

    How to use
    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:

    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

  3. brisbanewebdeveloper revised this gist Nov 25, 2012. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion readme.md
    Original 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.
    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

  4. brisbanewebdeveloper revised this gist Nov 25, 2012. No changes.
  5. brisbanewebdeveloper revised this gist Nov 25, 2012. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion readme.md
    Original 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.
    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

  6. brisbanewebdeveloper created this gist Nov 25, 2012.
    1 change: 1 addition & 0 deletions bookmarklet
    Original 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)
    21 changes: 21 additions & 0 deletions readme.md
    Original 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.