How to link to a child page of another tab

Very new to ionic and am probably missing something obvious.

I have three tabs using ion-tabs. Home, Jobs, About.

On the Jobs page I have a child view called type.

Now from the Home page I want to link to the Job Tab and target the child view type.

Is this possible and if so how would I go about doing that?

This is quite easy. Just call

$state.go("/parent/child");

from your controller. Make sure the $state service is injected in this controller.
Cheers.