8 lines
164 B
JavaScript
8 lines
164 B
JavaScript
|
jQuery(document).ready(function($) {
|
||
|
$('#post_tags').val(
|
||
|
$.map($('li.tag-link'),
|
||
|
function(t, _) { return $(t).data('name'); }
|
||
|
).join(' ')
|
||
|
);
|
||
|
});
|