Do you want a redirect after saving the NewForm or EditForm? – if so, to NewForm of the VQ list, or to an existing item?
Here is an example that redirects to NewForm – just drop it in Custom JS:
function dffs_PreSaveAction() {
var sc = getFieldValue("SecondaryCategory");
if(sc === "your_target_value"){
spjs.dffs.redirect("/sites/Your_Site/Lists/VQ/NewForm.aspx",false);
}
return true;
}
Alexander