upon filling up the form(selecting the date), i want its value to pass to the mother page....i know it can be done through javascript but i have little knowledge of javascript...i hope you can help me guys...thanks in advance
Either way you need an event to trigger the passing to the parent page. Perhaps an onMouseOver or onChange in your select boxes. Then you'd pass the information to a function on the parent page.
onChange="document.functionName('data');"
// Sample function
<script language="text/javascript">
<!--
function functionName(data)
{
document.getElementById("date").innerHTML = '<p>'+date+'</p>';
}
//-->
Something along those lines. My javascript is scarce as well.
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.