great initiative!
is this compatible with other sites? I'd like to add it to my blog
sure is, it's just a simple form.
The dropdown's
<select id="dropdown1">
<option value="bytemaster">bytemaster</option>
<option value="cryptoprometheus">cryptoprometheus</option>
<option value="beyondbitcoin">fuzzy</option>
<option value="riverhead">riverhead</option>
<option value="roadscape">roadscape</option>
<option value="thom">thom</option>
</select> <select id="dropdown2">
<option value="BTS">BTS</option>
<option value="BROWNIE.PTS">BROWNIE.PTS</option>
<option value="USD">USD</option>
<option value="GOLD">GOLD</option>
</select> <button onclick="getURL()">Tip Commenter</button>
the script ...
<script>
var getURL = function(){
var option1 = document.getElementById('dropdown1').value;
var option2 = document.getElementById('dropdown2').value;
var URL = 'bts:' + option1 + '/transfer/asset/' + option2 + '/memo/Tip%20for%20Hangout%20comment-071015';
window.open(URL);
}
</script>
the css ...
#dropdown1{
width:150px;
}
#dropdown2{
width:150px;
}
check this out too, modify this code below with your accountname, past it into a text file and save as whateryouwant.htm, host that file somewhere and make a link to it in your forum sig for tips. very crude forum tip "bot".

<meta http-equiv="refresh" content="0; URL='bts:beyondbitcoin/transfer/asset/BROWNIE.PTS/memo/Tip%20for%20...'">