openclassify/addons/default/visiosoft/advs-module/resources/js/custom-field.js
2019-06-22 13:59:18 +03:00

11 lines
212 B
JavaScript

var catId;
$('.add_custom_field').on('click', function () {
catId = $(this).attr('data-content');
});
function custom_field (attr) {
var link = attr + "&id=" + catId;
window.location.href = link;
}