Hello, I have a page, all there is in it is:
<script type="text/javascript">
alert('my test');
</script>
When I open the page by itself, it displays the alert.
Using the Tabs Content script, I call that page via ajax. Page displays, but not alert.
So please how do I initialize javascript in a page when calling it via Ajax?
This is important to me as that page in reality will contain a lot of jQuery script. With the simple example above, I pinpointed the problem with Ajax not recognizing Javascript.
Thank you for any help.