Why web pages embeded with java script loaded more faster than Applet ??

Morningdot Hablu

Morningdot Hablu

@morningdot-6Xuj4M Oct 26, 2024
Hello friend's,
Just started some read about java script.
Can any one tell me what is the reason that web pages embedded with java script work more faster than the one embedded with java applet..?
😁

Replies

Welcome, guest

Join CrazyEngineers to reply, ask questions, and participate in conversations.

CrazyEngineers powered by Jatra Community Platform

  • Morningdot Hablu

    Morningdot Hablu

    @morningdot-6Xuj4M Sep 23, 2010

    No issue!!
  • amala.motupalli

    amala.motupalli

    @amalamotupalli-9FZU26 Dec 1, 2010

    Because java script code execute at client side, not server side.
    and applet, first loads from server then execute at client side.
  • Yamini L

    Yamini L

    @yamini-uMEVDQ Dec 1, 2010

    As CEan amala said, your javascript code can be executed locally in your browser, because of which your actions are responded to quickly.
    Web pages are embedded with applets using the old <applet> tag or <object> tag, which in turn would specify the location and source of the applet from wherein it has to be downloaded.