|
Problems with JSE Search Script
Hi there,
i'm very new in the subject of Javascript. I'm trying to use the JSE Search Script from this website. Now I have a little problem. I need the results page to be displayed in another frame than the search page. How do i do this?
Here is the code:
// ---------- script properties ----------
var results_location = "results.html";
// ---------- end of script properties ----------
function search_form(jse_Form) {
if (jse_Form.d.value.length > 0) {
document.cookie = "d=" + escape(jse_Form.d.value);
window.location = results_location;
}
}
Thank you very much for your help!!
Phil from Germany
|