www.webdeveloper.com

Search:

Type: Posts; User: nivekyenwod

Search: Search took 0.01 seconds.

  1. Replies
    0
    Views
    76

    Javascript,Jqurey Iframes

    Hi,

    I have an application that uses iframes. This application is a rich client and in each frame there are javascript functions and libraries. The frames change context that is they change to...
  2. Replies
    11
    Views
    1,541

    Thanks very much for your support, I will call...

    Thanks very much for your support, I will call again!
  3. Replies
    11
    Views
    1,541

    That is to say, methods created outside the...

    That is to say, methods created outside the constructor and prototype are like static method properties/methods
  4. Replies
    11
    Views
    1,541

    reiterate: Anything to do with the Object...

    reiterate:

    Anything to do with the Object after a new event, the instance, must happen in the constructor or the prototype.

    Anything outside of the Constructor, a new event is not relevant and...
  5. Replies
    11
    Views
    1,541

    So basically. Anything to do with the...

    So basically.

    Anything to do with the Creation of the Object must happen in the constructor or the prototype. End of Story. Any thing created out side the constructor but on the same instance is...
  6. Replies
    11
    Views
    1,541

    // Last time !

    // Last time !
    <script type="text/javascript">
    var Person = function () {
    this.ctx = 'this is some other stuff'; // Public ;
    var stuff = 'this is some stuff'; ...
  7. Replies
    11
    Views
    1,541

    //Should have posted this example

    //Should have posted this example

    <script type="text/javascript">
    var Person = function () {
    this.ctx = 'this is some other stuff'; // Public ;
    var stuff =...
  8. Replies
    11
    Views
    1,541

    Thnaks for your reply, dont declare methods in...

    Thnaks for your reply,

    dont declare methods in the constructor use prototype. Good. Crockford recommends!

    I realised what you are talking about with this implementation in the example:
    ...
  9. Replies
    11
    Views
    1,541

    Javascript functions objects

    Hi,

    Can anyone explain why this is?

    functions can be declared in the constructor or in the prototype or on the object after the object has been initialised.

    functions can not be declared on...
Results 1 to 9 of 9
HTML5 Development Center



Recent Articles