I am trying simple HTML structure to read by JAWS screen reader
<html>
<head>
<title>test code</title>
</head>
<body>
<a href="#"></a>
<span tabindex="0">
<span>first line</span>
<span>second line</span>
</span>
</body>
on tab out from A tag focus is get set on next focusable SPAN tag because of tabIndex. But JAWS in not able to read all content in that SPAN when its focused. It reads only first child SPAN content and skips second SPAN content.
I need help on code changes with which JAWS will read both SPAN tags on focus.