Navigating to a List item automatically

Hi,
If I have list for example with 20 items, however when the user opens the activity, I want the user to be navigated to the 15th Item, can I do that in Ionic?

##LoveIonic#thankyou

Also the documentation is really good, only problem is the font size and the color, its so hard to read, just my opinion!

This worked for me.

If you want your list to scroll to a certain element you need to give that element an id

… then you can use the $ionicScrollDelegate and $location in your controller like this:
$location.hash(“item-123”);
$ionicScrollDelegate.anchorScroll(true);