On my homepage I got: Via MooTools, I get these anchor elements by id so that once they’re clicked, a flashy div will popup below them that contains the login or signup form (with methods to stop the propagation of events of course) and upon filling-up the fields the AJAX call kicks in – that’s supposed to create a session
Tag: browser
Why doesn’t JavaScript support multithreading?
Is it a deliberate design decision or a problem with our current day browsers which will be rectified in the coming versions? Answer JavaScript does not support multi-threading because the JavaScript interpreter in the browser is a single thread (AFAIK). Even Google Chrome will not let a single web page’s JavaScript run concurrently because this would cause massive concurrency issues