forum

Home / DeveloperSection / Forums / I notice a problem with the generated HTML:

I notice a problem with the generated HTML:

Manoj Bhatt 2059 16-Aug-2013
Hi!

echo "<a href=\"#tabs-\".$i> $name </a>";

echo "</li>";

echo "</ul>";

echo "<div id=\"tabs-\".$i>

Would result in the following HTML:

<a href="tabs-"1>Name</a>

</li>

</ul>

<div id="tabs-"1>...

Notice how the id's are "tabs-"[Number] as opposed to "tabs-[Number]". Same problem with the href. This might be it or at least part of it.

Thanks in advance!


Updated on 17-Aug-2013

Can you answer this question?


Answer

1 Answers

Liked By