This code should i place this code at bottom of body it’s in conditional comment.
<!--[if lt IE 7]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta2)/IE7.js"></script>
<![endif]-->
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Conditional comments use the syntax of normal comments:
<!--[if …]>…<![endif]-->. That’s why browsers that don’t understand them ignore them. So they can be put wherever normal comments are allowed. And thescriptelement is allowed to be child of thebodyelement.So you can put that conditional comment at the bottom in your
bodyelement.