Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $("#edit-analysis-code-one").change(function () {
- // Get the configs and split them.
- var cfgs = _get_configs("edit-custRef");
- var split_cfgs = cfgs.split('/');
- // Create some new configs and put it back into the configs textfield.
- var new_cfgs = $(this).val() +"/"+ cfgs[1];
- $("#edit-custRef").val(new_cfgs);
- });
- $("#edit-analysis-code-two").change(function () {
- // Get the configs and split them.
- var cfgs = _get_configs("edit-custRef");
- var split_cfgs = cfgs.split('/');
- // Create some new configs and put it back into the configs textfield.
- var new_cfgs = cfgs[0] +"/"+ $(this).val();
- $("#edit-custRef").val(new_cfgs);
- });
- });
- function _get_configs(id) {
- return $("#"+ id).val();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement