Here is my ajax call:

new Request.HTML({
				url: 'users.html',
				method: 'get',
				update: 'go',
				evalScripts: true, /* !! Why isn't this working!? */
				onComplete: function(){console.log('ajax complete!')}
			}).send()

I even check eval scripts!
users.html:

<label><h3>Save data here:</h3>
<br />
<section id="load" style="display:none;">
		<img src="progress.gif" />
	</section>
<section id="log">
	</section>
	<table>
	<tr><td>Data:</td><td>
	<textarea id="texta" placeholder="Save here." wrap="off" autofocus></textarea></label>
	</td></tr>
	<tr><td>Are you human?</td><td>
	<div id="cap">
	<script src="http://api.adscaptcha.com/Get.aspx?CaptchaId=1049&PublicKey=ac589518-4f4e-4566-ae26-c37c0f535a17" type="text/javascript"></script>
	<noscript><font color="red">Please enable javascript!</font></noscript>
	</div>
	</td></tr>
	<tr><td>&nbsp;</td><td>
	<input type="button" value="Go" name="submit2" id="start2"/>
	</td></tr>

This is not executing:
<script src="http://api.adscaptcha.com/Get.aspx?CaptchaId=1049&PublicKey=ac589518-4f4e-4566-ae26-c37c0f535a17" type="text/javascript"></script>
<noscript><font color="red">Please enable javascript!</font></noscript>
What is the solution so the script will run?

bump... 24 h.
Any answer?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.