Anchor not working in Firefox, Crome and Safari?
If your anchor tag is working in IE only and not working in FF, google crome and safari... then use Name in source tag instead of ID . becasue FF(firefox), google crome and safari can understand anchoring by name attribute only. and for " name " attribute you have to use anchore tag. for example : <a href="#myanchor">my link </a> ...... ...... <a name="myanchor"> </a> <p> ...... .... my text ..... .... </p> That's it!!! now check and your anchoring wil work in all browsers..... :) to know more about anchoring visit this site : Anchors not working in Firefox and Safari