vote up 0 vote down star

Hi,

Is it call test() of sub.htm from index.htm by this code when doing very?

Thank you very much.

index.htm

<div dojoType="dijit.layout.ContentPane" id="subFrame"  region="left" href="sub.htm">
<script type="dojo/connect" event="onLoad">
   // this call test()

</script>
</div>

sub.htm

<script type="text/javascript">

  function test() {
    alert("success");
  }

</script>
<table>
  <tr>
    <td></td>
  </tr>
</table>
flag

2 Answers

vote up 0 vote down check

For what I know you can't call a javascript inside a content pane unless you use <script type="dojo/method">. try to replace the text/javascript type in sub htm with "dojo/method".

link|flag
thanks! sica07. – ayumi Nov 9 at 1:38
vote up 0 vote down

i think it should be fine if you swap the function into a variable declaration style:

var test = new function(){ alert("success") };

link|flag
thanks! michael lowden. – ayumi Nov 9 at 1:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.