(This is a smarty site)
In www.mysiteB.com I have this iframe link.
<iframe src="http://www.mysiteA.com/link_submission_frame.php" id='inneriframe' scrolling=no style="width:545px;height:800px"></iframe>
The template for link_submission_frame.php is link_submission_frame.tpl and is located at:
components/directory/link_submission_frame.tpl
Below is the HTML for link_submission_frame.tpl
Code: Select all
<link rel="stylesheet" type="text/css" href="[color=#FF4040]stylesheet.css"[/color] >
{include file="components/form_link.tpl" title=foo}
This file obviously is the form HTML
There is no CSS for form_link.tpl, Below is the HTML:
Code: Select all
{literal}
<script language="javascript">
function validate(obj)
{
if(document.getElementById("dir_id").value=='0')
{
alert("Please Select the Directory");
return false;
}
// if(document.getElementById("subdir_id").value=='')
// {
// alert("Please Select the Sub Directory");
// return false;
// }
if(!checkemail(document.links_edit.webmaster_email.value))
{
alert('Please Enter Correct Email Id');
document.links_edit.webmaster_email.focus();
return false;
}
if(!isUrl(document.links_edit.home_pg_url.value))
{
alert("Please Enter Correct Url");
document.links_edit.home_pg_url.focus();
return false;
}
if(!isUrl(document.links_edit.link_to_url.value))
{
alert("Please Enter Correct Url");
document.links_edit.link_to_url.focus();
return false;
}
obj.form.performaction.value='Save';
obj.form.submit();
}
function isUrl(s)
{
var regexp = /(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/
return regexp.test(s);
}
function checkemail(e){
var str=e;
var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i
if (filter.test(str))
return true;
else{
testresults=false
}
}
</script>
{/literal}
<div>{$confirmation}</div>
<div>{if !$confirmation}{html_form loop=$tpl_formdata tableparams=$tpl_formdata_table formparams=$tpl_formdata_form}{/if}</div>
Thank anyone who attempts to answer my question.