Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 13532 |
anikendra |
1 |
$(document).ready(function(){
|
|
|
2 |
$("#srch-term").autocomplete('/albums/search', {max: 15,minChars:3});
|
|
|
3 |
$("#srch-term").autocomplete().result(function(evt,data,formatted){
|
|
|
4 |
$("#album-slug").val(data[1]);
|
|
|
5 |
document.location.href = '/album/'+data[1];
|
|
|
6 |
});
|
|
|
7 |
});
|