Hi Currently I am using this..
When the user click the link it says..
Are you sure you want to delete this account? If yes, the downline of this user will be sent to the account "jerk"
Is there a way to make the quotes without using a variable?
Code:
<script type="text/javascript">
var quote = '"';
</script>
<a href="" onClick="if(!confirm('Are you sure you want to delete this account? If yes, the downline of this user will be sent to the account '+ quote +' jerk '+ quote)) return false;">Test dont click!</a>
When the user click the link it says..
Are you sure you want to delete this account? If yes, the downline of this user will be sent to the account "jerk"
Is there a way to make the quotes without using a variable?