hi, I was wondering if you can help me with this: A function needs to do the following: - user hovers mouse over link - javascript submits the link to a php script - resulting page appears in an iframe on same page Hope I described it OK. Best Regards, Will
myonhover() { //get whatever value you need from your <a tag here var myvalue = ; document.frames['yourframe'].document.location.href = "somephppage.php?someparam=" + myvalue; }