If you're wanting to see what some of these posts containing
if="%3cactinic%3avariable%20name%3d%22SectionNamePrev%22%20%2f%3e%20%21%3d%20%22%22"
actually looks like to humans then the following will help.
Copy / paste the following into a textfile and save it on your desktop or server as e.g. descape.html. Then add it to your favourites.
Now open that page and copy / paste your cryptic code into the top box and see the results in the lower one.
Updated 9-2-9 (nice palindromic date) - added Wrap button (only works in IE).
if="%3cactinic%3avariable%20name%3d%22SectionNamePrev%22%20%2f%3e%20%21%3d%20%22%22"
actually looks like to humans then the following will help.
Copy / paste the following into a textfile and save it on your desktop or server as e.g. descape.html. Then add it to your favourites.
Now open that page and copy / paste your cryptic code into the top box and see the results in the lower one.
Code:
<html>
<head>
<title>Make Actinic code readable</title>
<script>
function dowrap(button){
if ( button.value == 'Wrap' )
{
document.forms.fixit.actinic.setAttribute('wrap','soft');
document.forms.fixit.readable.setAttribute('wrap','soft');
button.value = 'UnWrap'
}
else
{
document.forms.fixit.actinic.setAttribute('wrap','off');
document.forms.fixit.readable.setAttribute('wrap','off');
button.value = 'Wrap'
}
}
</script>
</head>
<body>
<form name="fixit">
Source code
<br/>
<textarea wrap="off" name="actinic" cols=100 rows=20 onchange="document.forms.fixit.readable.value=unescape(document.forms.fixit.actinic.value);"></textarea>
<br/>
<br/>
Readable code <input type="button" value="Display" onclick="document.forms.fixit.readable.value=unescape(document.forms.fixit.actinic.value);">
<input type="button" value="Clear" onclick="document.forms.fixit.readable.value='';document.forms.fixit.actinic.value='';">
<input type="button" name="wrapit" value="Wrap" onclick="dowrap(this);" />
<textarea wrap="off" name="readable" cols=100 rows=20></textarea>
</form>
<script>
document.forms.fixit.actinic.setAttribute('wrap','off');
document.forms.fixit.readable.setAttribute('wrap','off');
document.forms.fixit.wrapit.value = 'Wrap';
</script>
</body>
</html>
)
Comment