The HTML structure is like this
some Text
jQuery uses CSS-Selectors. What you are doing is trying to get all li-tags inside an innerfade-tag, which obviously doesn't exist.
li
innerfade
You need to select it using its class, just like in CSS:
class
$(".innerface li")...