problem with hyperlink inside of a list item

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ManniianR
    New Member
    • Feb 2012
    • 1

    problem with hyperlink inside of a list item

    Hi,

    In my page I am using <ol> and inside of that <li>. In this <li> tag i have 5 lines of content and middle of this(3rd line) I have a hyper line for one of the word. When we click on this hyper link, before loading the linked page, my entire content of this list item is getting off (disappearing). But other than this list item contents are stable. Could you please help me to solve this?

    Code:
    <ol>
    <li> fine list item>
    <li> This word also getting off.
         but my hyper link word is next line.
         the prolematic line <a href="www.asp.net">HERE</a>
         But, when we click on this byper link, this entire block is getting off (these five lines).
         please help me to solve this.
    </li>
    <li> Thanks in advance.</li>
    </ol>
  • Phillis2013
    New Member
    • Jan 2012
    • 14

    #2
    did you know you have a > right here fine list item> it might be affecting the code other wise i am stumped

    Comment

    • sreekandank
      New Member
      • Jun 2009
      • 45

      #3
      I have found some flaws in your code. The code rewritten as follows:

      <ol>
      <li> fine list item
      <li> This word also getting off.
      but my hyper link word is next line.
      the prolematic line <a href="http://www.asp.net">HE RE</a>
      But, when we click on this byper link, this entire block is getting off (these five lines).
      please help me to solve this.
      </li>
      <li> Thanks in advance.</li>
      </ol>

      Comment

      • rekedtechie
        New Member
        • Feb 2012
        • 51

        #4
        try to make a copy of that code in the page when you click the hyperlink.

        Comment

        Working...