javascript - Scripts in HTML -
another question have this; want execute script (docs()) when click text, i've tried using code:
<p><span class="skill">documentation can found here.<script>docs()</script></span></p>
but doesn't work, ideas?
try use onclick
<p><span class="skill" onclick="docs()">documentation can found here.</span></p>
Comments
Post a Comment