html - HREF Links Not Working When Using JQuery Plugin -


<div id="content">     <div id="header">         <div class="example">               <h3 id="example2"><a href="##############">news</a></h3>         </div>      </div> </div> 

for reason links not work when use jquery plugin (arctext.js). script individually rotates letters angle based on how many letters, width, height, etc. never thought affect links, ideas?

arctext splits string individual characters, therefore breaking anchor.

http://jsfiddle.net/6hrwk/

what need move anchor outside

<div class="example">             <a href='#####'>               <h3 id="example3">news news news news </h3>             </a>     </div> 

and work.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -