mirror of
https://github.com/wahyd4/Libr.git
synced 2026-08-09 21:05:51 +10:00
10 lines
322 B
JavaScript
10 lines
322 B
JavaScript
$(document).ready(function(){
|
|
$('a.generate-key').click(function(){
|
|
$.post('',function(json){
|
|
console.log(json.value);
|
|
$('a.generate-key').text(json.value).unbind('click').css('font-weight','bold')
|
|
.css('color','#5a5a5a').css('font-size','20px');
|
|
})
|
|
});
|
|
});
|