Search Results

2
votes
2answers
1k views

Trigger an event with Prototype

Does anybody know of a method to trigger an event in Prototype, as you can with jQuery's trigger function? I have bound an event listener using the observe method, but I would also like to …
2
votes

Is there a way to determine that the browser window was closed?

Browsers do not have a close event so you can't really tell when the user has closed their browser, there are some potential workarounds in …
9
votes

Is there a way to password protect HTML pages without using a server side language?

There is no way to create a secure clientside script. If the user has access to it, it's insecure. If your host is running apache you can secure folders using .htaccess, on IIS you can do t …
2
votes

Javascript: How to determine the screen height visible (i.e., removing the space occupied by the address bar etc)

What you're looking for is called the 'viewport size' This script should give you a start …
5
votes

Can we use 2 different url on same anchor tag for javascript disabled and enabled condition ?

You could set the JS disabled URL in the markup, then on page load use JS to replace the url with the enabled URL. HTML: <a id="id" href="js_disabled_url" />Link</a> j …