jquery - HTTP request url is getting concatenated to other links -
i have ascx control top menu on page, on have lists different links on site like:
<ul> <li class="catheading">section select</li> <li><a href="/section1/subsection1">one</a></li> <li><a href="/section2/subsection2">two</a></li> </ul>
this menu animated jquery. thing lately have intermitent issue request logged on iis logs like:
/section1/section2/subsection2
and valid request should be:
/section1/subsection1
/section2/subsection2
does knows may cause malformed request? far know should on client side have not found information on this(btw i'm using chrome 43.0.2357.134 m). in advance!!
Comments
Post a Comment