Archive for November, 2009

We’ve finished aligning all EDB-IDs to milw0rm IDs, and voted the “exploit-db.com” domain as the favorite. No, we are not going commercial.
Go website: exploit-db.com
1

Google’s dominated search, online document collaboration, e-mail, telephony, and more, so why not programming? The tech giant has announced its own open-source, object-oriented programming language, called Go.
“Go combines the development speed of working in a dynamic language like Python with the performance and safety of a compiled language like C or C++,” according to a [...]

Firefox 3.6 Beta 2, the next version of Mozilla’s popular Web browser, arrives less than two weeks after the first beta of Firefox 3.6. It contains over 190 fixes to the original beta. Mozilla currently occupies about 25 percent of the browser market, according to a new study, placing it second behind Microsoft’s Internet Explorer [...]

There are different situations when you may want to use an external javascript file. One idea may be to reference a single script from different web pages. Another idea may to be to conform closer to the W3C standards. Perhaps the reason is “just because”.
Having an external JavaScript page is similar to having an external [...]

Sometimes images can be a bit large in memory size. Having a rollover effect work efficiently means it should work properly from the start of the page being loaded. Without a preload, there may be a short delay in the rollover effect at first since the browser will only download images as they become “active” [...]

Rollovers, Mouseovers, Image Swaps… It goes by many variations of names, but means the same thing. Making one image change into a different one when a mouse pointer goes over a specified area.
The first thing you will need are 2 images. One for normal view, a second for the change.
The first image will be placed [...]

Creating a new window to pop open is easily done using regular HTML and the TARGET property. What about configuring those windows? Size, position, toolbars, etc… ?? That is where JavaScript steps in.
Using a simple function and a form button, here is a script to open my “page 1″ into a new “regular” window. The [...]

One of the most used instances of JavaScript is location. Location represents the URL or web page address. Location can be used to determine the current URL and also to change the URL to a different page or site.
The location of this page is : // http://blog.keyw0rk.net/tutorials/JavaScript/location/
The location of this page is :
<script type=”text/javascript”>
<!–
document.write(location.href);
// [...]

Timeouts are like a timer. It can allow you to execute a section of code after a specified amount of time has passed. If you have viewed this page for 30 seconds, you have probably noticed a working example of this. Here is the code used :
//
<script type=”text/javascript”>
<!–
setTimeout(“alert(‘Thirty seconds has passed.’);“,30000);
// –>
</script>
Notice that the [...]

The status bar is the small message area you see at the bottom of the browser window. For IE users, you probably see a web page symbol and the word “done”. For Netscpae users, you probably see “document : done”. This area can actually be used to show a message. Click on these buttons and [...]

5 visitors online now
5 guests, 0 members
Max visitors today: 5 at 06:40 pm GMT-3
This month: 31 at 03-10-2010 01:25 pm GMT-3
This year: 32 at 01-23-2010 07:03 pm GMT-3
All time: 63 at 11-14-2009 05:10 pm GMT-3