开发者

figuring out this Javascript code

I am trying to figure out how the get the featured area

at http://blueoceanportfolios.com to link to webpages rather than displaying it within the featured box on the left .

This area is using JS file to display the videos on content in the featured box when different items on the menu are clicked, here is the working example :

http://www.blueoceanportfolios.com/company/

Okay , The pro开发者_开发技巧blem: Loading a new webpage rather than displaying the content at featured box at the homepage of above website

Tried solutions: linking to javascript functions like onclick="window.location="http://someplace.com";" etc but still the content loads up in the featured box , try clicking on 2) it displays stackoverflow.com rather than loading new page.

Any suggestions ?


This:

 <script type="text/javascript">
     onclick="window.location="http://someplace.com";"
         </script>

... is not the way to add event handlers to an element. If you want those anchors to link to a web page, put the URL in the href attribute like any normal link:

<a href="http://someplace.com">Link text</a>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜