Route dialog inputs into another doctype

I’d like to take some information in one doctype with custom dialog input and forward it to another doctype for further detailed input, similar to the way quick entry works. What is the recommended way to do this and are there any built-in tools I should be aware of for this? I don’t know if there’s a way to pass information along a route using the route method.

You can use
frappe.route_options = { field:"field" }
frappe.set_route("Form","Doctype")

Thanks @hereabdulla, that’s very cool. I’ll try it out.