Sha256: 942498f39c4c7ebac3d95dc44941ce1218dccb6876114102303a66e21e0a9ce3
Contents?: true
Size: 523 Bytes
Versions: 99
Compression:
Stored size: 523 Bytes
Contents
$(function() { $('select[name="office_action_template[from_type]"]').on('change', (ev) => { // logg(ev.target.value, 'changed') // let url = window.location.href; // if (url.indexOf('?') > -1){ // url += `&from_type=${ev.target.value}` // } else { // url += `?from_type=${ev.target.value}` // } // window.location.href = url; const parser = new URL(window.location); parser.searchParams.set('from_type', ev.target.value); window.location = parser.href; }) }); // END
Version data entries
99 entries across 99 versions & 1 rubygems