also did u close the img tag
Main Topics
Browse All TopicsHello
I have some Javascript in my XHTML page as it will not validate because of it.
<li><a href="#" title="Tooltip. " ><img src="images/tabs/tab-becom
And also the <script> in the <head> that runs it.
How do i get it to validate while still using teh JavaScript?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Just to clarify, if you still have the language tag in your script, that's why it's not validating.
So instead of this:
<script type="text/javascript" language="Javascript"></sc
Use this:
<script type="text/javascript"></s
As for your code, xhtml is lowercase, so:
onMouseOut is onmouseout
onMouseOver is onmouseover
As for the image tag, use name and id for backwards support:
... id="imgBecomeMember" name="imgBecomeMember" ...
Here's a good reference site for you:
http://www.w3schools.com/x
Thanks,
Sean
Also, you may need to have the following if you've got functions written in the page, in a script tag somewhere:
<script type="text/javascript">
//<![CDATA[
function your_javascript_function()
}
//]]>
</script>
This is because it attempts to parse those functions as html, and characters like > and < and && won't validate properly.
Business Accounts
Answer for Membership
by: archrajanPosted on 2005-01-16 at 20:20:48ID: 13060286
see this
cript>
<script src="urfile.js" type="text/javascript"></s
do u have the script tags closed?