asked on
function checkform()
{
some validation
$('#form1').submit(function() {
window.open('', 'formpopup', '');
this.target = 'formpopup';
});
}
function confirmPrint(theID)
{
var sURL = "checkifprintedModal.cfm?myID="+theID;
showPopWin(sURL,600,375,null);
}
function loaddata()
{
ajax to load table form
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("mydata").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","getmystuff.cfm?accountID="+encodeURIComponent(accountID),true);
xmlhttp.send();
}
<body onload="loaddata();">
<form id="form1" target="_blank" onsubmit="return checkform()">
<div id="mydata">
<table>
<!--- ajax data goes here --->
<tr>
<td> <input type="submit" value="Submit">
</tr>
</table>
</div>
<table>
</form>
</body>
$('#form1').submit(function() {
$('#this').target="new";
});
and var targetvalue = "new";
$('#form1').prop("target", targetvalue);
$('#form1').submit(function() {
$('#form1.target')="new";
});
with this I am getting js error saying "Uncaught ReferenceError: Invalid left-hand side in assignment"JavaScript is a dynamic, object-based language commonly used for client-side scripting in web browsers. Recently, server side JavaScript frameworks have also emerged. JavaScript runs on nearly every operating system and in almost every mainstream web browser.
TRUSTED BY
// Popup window code
function newPopup(url) {
popupWindow = window.open(
url,'popUpWindow','height=
}
</script>
<a href="JavaScript:newPopup(