Submit Blog Login Last Submitted Blogs RSS Archive Contact  
Javascript
 
 
 
    Articles about Javascript
    Excerpt Content with CSS and JavaScript
    2008-07-21 15:54:04
    Sometimes when you have much creative ideas to write on your blog post, you will have long words to tell the readers. So, whenever your visitors landed to the front page of your blog, they need to scroll down a bit more. The consequence is that probably you can only have limited recent posts at the front page. Excerpt the blog content would be a great idea since, you can expose more recent posts at the front page of your blog. I surfed down a cool tutorial from Rob Glazebrook of CSSnewbie.com th
    By: Graphic Identity
     
    Scripting: JavaScript Color Fading Script
    2008-07-16 10:12:15
    Are you looking for another simple effect that can bring something brilliant to your website appearance? Try this lightweight JavaScript Color Fading Script. It gives you color transition that is fading gradually to another color.You can apply this script for tables, divs and many more.Some elements that you can target are:- background- border- text colorYou [...]
    By: Sharebrain - the best links for Webworkers
     
    Scripting: A Simple JavaScript Tooltip
    2008-07-15 04:34:45
    This animated JavaScript tooltip script is very simple with only 2kb of file size. It works in IE6+, Firefox, Opera and Safari. The main idea is to create a lightweight script that fades a tooltip with rounded corners attached to the cursor position.You will need to setup the namespace and global variables, then [...]
    By: Sharebrain - the best links for Webworkers
     

    Redirect your HTML pages without using Javascript or PHP
    2008-07-10 07:19:10
    This tutorial will show you to redirect users to another webpage without using header and other PHP methods. It’s actually very simple, just one line of HTML code. Place the code in the head tag of you HTML page : [-]?View Code HTML<meta http-equiv="Refresh" content="1 url=http://www.yoursite.com/newpage.html"> In the Content attribute there is the number 1, and an URL. [...]
    By: CrazyLeaf Design Blog
     
    3 Cool Javascript Hacks
    2008-07-09 05:18:54
    Are you ready to learn some hacking? If yes, here are the 3 cool javascript tricks that you can try out now. To perform the hack, you need to copy and paste the javascript code on the address bar of your web browser. Make sure you clear the address bar first before pasting. Once paste, hit Enter. Javascript Hack 1 : Edit Any Webpage The code : javascript:document.body.contentEditable=’true’; document.designMode=’on’; void 0 Now, you can edit any webpage that you like. See how my blog became the best tech blog on the net. Javascript [...]
    By: My Tech Quest
     
    free javascript syntax
    2008-07-05 23:31:22
    [edit] Origin of SyntaxBrendan Eich summarized the ancestry of the syntax in the first paragraph of the JavaScript 1.1 specification as follows:“JavaScript borrows most of its syntax from Java, but also inherits from Awk and Perl, with some indirect influence from Self in its object prototype system.”[edit] VariablesVariables in standard JavaScript have no type attached, and any value can be stored in any variable. Variables can be declared with a var statement. These variables are lexically scoped and once a variable is declared, it may be accessed anywhere inside the function where it is declared. Variables declared outside any function, and variables first used within functions without being declared with 'var', are global. Here is an example of variable declarations and global values:x = 0; // A global variablevar y = 'Hello!'; // Another global variable function f(){ var z = 'foxes'; // A local variable twenty = 20; // Global because keyword var is not used return x; // We
    By: Free Download Books
     

    Gallery: MooFlow javascript based Gallery
    2008-07-04 08:10:45
    MooFlow is a Javascript based Gallery looks like Apple´s iTunes or Finders CoverFlow™. Some of the features are: * autosetup graps all images inside a element * autoresize on changes of window dimensions * fullscreen option * scrolling with mouse wheel [...]
    By: Sharebrain - the best links for Webworkers
     
    How to Eliminate JavaScript Errors
    2008-07-04 00:00:00
    Javascript errors, with their yellow triangle popping up, can be a nuisance, but there are some steps that you can take which will help eliminate and prevent JavaScript errors once and for all. Sometimes the error is because there is an error in the javascript which is included in the page, and other times the [...]
    By: Resources Zone
     
    Brainpick Scripts: GlassBox - compact Javascript User Interface library
    2008-06-27 07:44:28
    GlassBox is a compact Javascript User Interface (UI) library, which use Prototype and Script.aculo.us for some effects. With GlassBox you can build transparent border, colorful layouts and “Flash-like” effects. The GlassBox library is easy to use, customizable and skinnable, comes with a coherent API and documentation, tested with IE 6, Firefox 2, Opera 9 and [...]
    By: Sharebrain - the best links for Webworkers
     
    Which is the best JavaScript and Ajax Framework ?
    2008-06-26 04:05:26
    Last time, I had published a poll asking which is the best PHP framework and in that poll Zend Framework stand out itself to be the most popular PHP framework among the PHP developers. This time ,I’ve come up with another Poll and I would you to participate in this POLL “Which is the best [...]
    By: PHP And Ajax Related Useful Resources and Codes
     
    Javascript: Digg style slider with javascript and CSS
    2008-06-22 08:12:28
    Here you will learn how to create a nice slider effect using CSS and Javascript. You can download the needed slider.js there too.
    By: Sharebrain - the best links for Webworkers
     
    Manipulating Image Using JavaScript From Netzgesta
    2008-06-09 21:45:33
    Look at this page, there are 10 effects of image manipulating using JavaScript. Another simple way to customize our blogs or web pages using JavaScript from Netzgesta. You need to download the scripts and upload to your file hosting server (e.g geocities). Don't need to upload all scripts, only effect you want to use on your blog or web page. For an example I'll use glossy effect from Netzgesta
    By: Computers & Networking
     
    Creating a Simple HTML Form Validation System Using JavaScript
    2008-06-09 01:35:01
    OK, so today we are going to create a simple Form Validator Script using JavaScript that would not let a HTML form be submitted unless all required field are filled in. JavaScript is widely used for this purpose as it does not need server processing hence no form sending and pageload is required. When you are using data submission via form on your website there are a few other methods that you can employ other than JavaScript; first, not to use validation at all (NOT RECOMMENDED), second, to use validation in the script and make it show appropriate message (need pageload). So definitely we’ll be using JavaScript and you should in most cases, too. Let’s kick off guys! Now before we begin I want to tell you one thing, we will only be checking (validating) if all the required fields are filled or not and NOT whether what is filled in is acceptable. Of course we can use JavaScript to validate whether, let’s say the filled email address is ap
    By: Learning Computer Programming
     
    Enhancing Search (Input) Boxes Using JavaScript
    2008-06-09 01:30:50
    Time for some JavaScript action. JavaScript as you know is a client-side web scripting language and is the best choice for any client-side scripting application for the web. Today we’re going to employ some basic and simple JavaScript methods to enhance a Search (Input) Box as in the image above. You’ve probably come across this type of Search Box before. In the text box initially is written ‘Search’ or something of that sort but as soon as you click or focus on it, the field becomes empty for you to type in, again when it is left blank and focus is taken off it, field changes back to have the initial text. I don’t actually see a big enough reason why people employ this technique but one common reason might be when there is not enough space to label the search box, this technique can use the Text Box to label itself. OK, enough discussion, now let’s have a look at the code: <form action="SCRIPT-NAME" method="
    By: Learning Computer Programming
     
    10 JavaScript untuk manipulasi gambar
    2008-06-07 01:54:00
    Ada yang senang dengan memanipulasi gambar? Sebagin mungkin menjawab bahwa mereka senang mengutak atik gambar menggunakan Photosohp sebagian mungkin iseng dengan GIMP dan sebagian lagi hanya senang Croping gambar sementara sisanya mungkin copy paste saja. Menampilkan gambar dengan semenarik mungkin dapat menjadikan daya tarik tersendiri bagi web atau blok kita, bahkan bagi para webmaster image
    By: m riza
     
    moo.rd - a MooTools based javascript library
    2008-06-06 05:32:58
    moo.rd is a super lightweight javascript (object oriented) library based on the MooTools framework. It is designed to give many useful and powerful functionalities to the developers, like a lot of effects, customizable standards, utility native functions, table management, virtual boxes and many more. In addiction moo.rd is modular, flexible, and completely compatible [...]
    By: Sharebrain - the best links for Webworkers
     
    Prototype Javascript AJAX - Quick Start
    2008-06-03 14:18:34
    Prototype is a javascript library that allows easy AJAX implementations to enhance your website. With a couple of <script> additions to your website you can easily access php scripts to read, compute, and return particular results. For instance an html <form> element can be used to capture data, and an AJAX call can be used [...]
    By: The Server Setup Guide
     
    Banners javascript que rotan cada x tiempo
    2008-05-17 13:32:00
    Un amigo me pidió que le echara un mano para implementar un espacio de publicidad de banners en su web, pero debía tener la característica de que éstos rotaran automáticamente cada cierto tiempo si el usuario no cambia de página en el sitio. Aprovecho la oportunidad para compartir con todos este código fuente, porque es algo ingenioso y nos puede ser útil en nuestra web.El rotador de banners está desarrollado con javascript, por lo que se puede utilizar en cualquier página web, sin importar el lenguaje con que esté desarrollada. Se compone de un archivo javascript que contiene la lógica del programa y una llamada a dicho archivo que debe especificarse en la página donde vamos a colocar los banners.Al final de el artículo están disponible para su descarga los dos archivos de ejemplo que describiremos a continuación. También es posible verlos online pinchando en el vínculo correspondiente, más abajo.En la página donde mostraremos los banners; en nuestro caso publicida
    By: Programación Web y Tecnologías Informáticas
     
    Webjax.eu :: Mise en ligne d'une traduction de documentation de JQuery da great Javascript Framework for Developpers :-)
    2008-05-16 21:51:00
    Webjax.eu s'agrémente ce jour d'une nouvelle rubrique, rubrique concernant JQuery, formidable framework Javascript destiné aux développeurs. Ce framework JQuery est vraiment formidable car à l'inverse de Mootools ou d'autres, il apporte un réel plus au framework qui a en quelque sorte fondé le web interactif en version web (c'est à dire pas de Flash) à savoir Prototype.js (aussi décrit dans Webjax.eu ;-) ). En effet ce framework, optimisé en terme de kilo-octets, ce qui n'est pas négligeable quand on a déjà utilisé Scriptaculous, implémente un nombre impressionant de fonctionnalités et se révèle extrèmement via son utilisation "combinatoire" c'est à dire que vous pouvez exécutez et exécutez des fonctions au sein d'une même ligne de code ce qui permet un filtrage, des restrictions extrèmement fines et précises. De plus, le modèle est totalement objet et très bien conçu au niveau de la modélisation des entités à utiliser. En effet, qui a un peu
    By: Webjax.eu :: Référence francophone sur le web2.0
     
    Speed Up Your Javascript Load Time
    2008-05-14 13:55:14
    In this great article you will read about how to speed up your Javascript Load Time. It covers Topics like “Find The Flab”, “Compress Your Javascript”, “Debugging”, “Optimize Javascript Placement” and much more. So if you want to speed up your site you have to read this.
    By: Sharebrain - the best links for Webworkers
     
    SilverSoft Hiring Team Leads - PHP, JavaScript, SQL
    2008-05-02 05:37:00
    About Silversoft: SilverSoft India has always striving to deliver quality solutions by employing the best engineers in India. We bring in economic value by employing highly skilled, but inexpensive... For more info on latest job openings and other career related information visit my site http://venky-itjobs.blogspot.com
    By: IT Jobs and Career
     
    How to know and handle disabled javascript in browser
    2008-04-27 06:22:31
    var dzone_style="2";In this blog, I’ve been writing a lot of tips and tutorials using JavaScript. I really love JavaScript and hope that you guyz also like it. But what to do when JavaScript is disabled in the client’s browser?. I would like to redirect the visitor to a warning page where he’ll be suggested to [...]
    By: PHP And Ajax Related Useful Resources and Codes
     
    Assigning JavaScript Vars to JavaScript Functions
    2008-04-23 11:52:08
    Making a javascript functions from variables is one thing important for a .NET developer. Means to say, we can define a variable when associated with a function. Much like...var message = function DisplayMessage(boolVar){ if(boolVar == 'true') document.write("He's telling the truth!"); else document.write("You lie!");}The call would be something like this...DisplayMessage(true);
    By: Of Thoughts, Chocolate and Vices
     
    RSS Feed ( Atom Feed) - Javascript Aggregator
    2008-04-20 02:49:00
    It's nice to have a community blog on - let say - Blogger containing aggregated contents from relatives' or friends' WordPress, Friendster blogs. Or if you happens to like to read news article from various sites compiled into just one website, I might have a way worth to try.Aggregating articles are becoming easier today with the help from RSS feed/Atom feed and fortunately, there's a site offering merging several RSS/Atom feed into one combined xml based feed: FeedJumbler The resulted feed can be used on any RSS reader. Another good news is that the site also supports generating javascript containing the merged feeds, which you can copy and paste to your blog widget including the blog post.
    By: Because Finding Useful Things are not always Easy
     
    Super Mario en un JavaScript de 14 kb
    2008-04-09 03:13:55
    Todo en este juego está hecho en JavaScript: no hay imágenes externas, todo está renderizado con capas e incluso la versión con música del juego la tiene embebida en el código en formato MIDI. Realmente el archivo de este experimento ocupa 35 kb, pero usando el YUI Compressor su tamaño disminuye hasta los 14 kb. El rendimiento [...]
    By: Mare Magnum
     
    JavaScript Performing 35% Faster on iPhone OS 2.0
    2008-04-05 17:33:25
    Albeit the iPhone OS 2.0 is still rather slow and buggy, it has been noticed that JavaScript is running quite a bit quicker than it was on older versions of the iPhone OS (the version that most of us are using now). According to a test done using Celtic Kane’s benchmarks, JavaScript is running up to [...]
    By: Touch Podium
     
    JavaScript Dialog Box
    2008-04-04 03:43:00
    If it is the first time that you visited this site or if you happen to have reloaded this site, you will be prompted by a dialog box asking your name. After entering your name, a message will appear above the picture of my son on the left sidebar. This trick is made possible by the simple JavaScript codes that I have added.To add the same feature in your blogsite or website, follow the simple instructions below:Step1: Open the HTML template of your blog. Add the codes below to the new Page Eleme
    By: Web Basics
     
    Display random number in random way using JavaScript
    2008-04-03 10:25:04
    I think you guys already know about how to get the random number using JavaScript, if you don’t know then you can use Math.random() to display a random no ranging from 0 to 1. It would have been better if we display the random number in the random way using JavaScript. Ok, Let’s do it..
    By: PHP And Ajax Related Useful Resources and Codes
     
    Website statistic (User Information) in Javascript
    2008-03-31 00:06:42
    From the code below, you can get Resolution, Page title, Page url, Agent name, Browser name and Page Referrer. <span[...]
    By: Mukesh Chapagain\'s Blog
     
    Unas librerias de javascript muy útiles
    2008-03-26 00:38:53
    Pues la verdad es que esta es una de esas páginas que te encuentras por casualidad y dices, vaya tontería. Pero oye que si tiene algunas cosillas interesantes: efectos, algo de AJAX, matemáticas… os dejo el enlace por si pilláis alguna. Compártelo!
    By: SoyGik
     
    Go back link in Javascript
    2008-03-19 06:48:06
    I had problem giving the back link and I found this solution: <a href=’javascript:self.history.back();’>Go Back</a> This helped me. Hope this will be useful to you as well. goback.html <html> <head> <title>Go Back Test</title> </head> <body> Go Back to Previous link, Test Page <br/><br/> Click the link below for the test: <br/><br/> <a href="goback2.php">CLICK ME</a> </body> </html> goback2.php <?php echo "Thank You for visiting."; echo "<br/><br/>"; echo "Please click ANY of the given link to go [...]
    By: Mukesh Chapagain\'s Blog
     
    Tecnologías del lado del cliente: Lenguaje Javascript
    2008-03-08 15:53:00
    Javascript es un lenguaje de programación utilizado para crear pequeños programas encargados de realizar acciones dentro del ámbito de una página web.Se trata de un lenguaje de programación del lado del cliente, porque es el navegador el que soporta la carga de procesamiento. Gracias a su compatibilidad con la mayoría de los navegadores modernos, es el lenguaje de programación del lado del cliente más utilizado.Con Javascript podemos crear efectos especiales en las páginas y definir interactividades con el usuario. El navegador del cliente es el encargado de interpretar las instrucciones Javascript y ejecutarlas para realizar estos efectos e interactividades, de modo que el mayor recurso, y tal vez el único, con que cuenta este lenguaje es el propio navegador.Javascript es el siguiente paso, después del HTML, que puede dar un programador de la web que decida mejorar sus páginas y la potencia de sus proyectos. Es un lenguaje de programación bastante sencillo y pensado para
    By: Programación Web y Tecnologías Informáticas
     
    Using JavaScript with HTML Forms
    2008-01-30 21:11:19
    One of the commonest problems that web masters come up against when web programming with forms is that users often neglect to enter the correct information. Client side HTML form validation with JavaScript solves this problem by intercepting the standard browser submit function with a JavaScript submit equivalent. The JavaScript example in this article illustrates the [...]
    By: computer and internet business
     
    Slider Using PHP, Ajax And Javascript
    2008-01-10 13:01:03
    Have you been searching for the slider script and implementing it in Ajax with PHP then you are in the right place buddy. Ok let’s Begin it by creating the following tables in the database, CREATE TABLE `tbl_slider` ( `id` smallint(6) NOT NULL auto_increment, `slider_val` smallint(6) NOT NULL default ‘0′, PRIMARY KEY [...]
    By: PHP And Ajax Related Useful Resources and Codes
     
    Browse Orkut without Javascript Support - Be Safe
    2008-01-09 02:04:00
    Ever thought how would orkuting will be possible without javascript support, you would be thinking what the hell Javascript add the functionality of sending scraps, opening albums etc, however the point to note is that many viruses in the browser are entered through javascript only so if you want to have a safer browsing or orkuting you have to turn javascript off in your browser but if you would turn it off the orkut site will not work properly.This script also helps in protecting from google suspending your account on using orkut javascript hacks.Now there is a solution to this problem there is a greasemonkey script with which you can» send/delete scraps, messages, topics, events, polls;» quick reply scraps;» manage your community;» report spam;» accept/reject requests;» accept/reject testimonials;» add/delete users from lists;... and much more, all this with the security of being navigating with disabled JavaScript.The instructions for installing this script are:1. This will require Firefox and GreaseMonkey! (New to GreaseMonkey?)2. Download this script by clicking here.3. A window will pop up just click on the install4. Turn off your browser Javascript off, in firefox you can do this by Going to Tools>Options>Content Menu and uncheck the javascript option.if you face any problem do post about it...This Post is inspired By This WebPage :)
    By: Orkut Champ
     
    Ajax and JavaScript Resources
    2008-01-02 08:47:00
    Guys I found something interesting and it’s a nice sites for web developer out there, the ajax and javascript resources. These ajax and javascript resources is a big benefit for those web developer, here you can see all examples and demos you want to implement to your site. Like these one; lightbox, accordion, tooltips and other ajax effects. And if you can encounter problems with your ajax and javascript these resources is a big help for you to solve your problem about the script you made. Here you can learn and improve the way you script in a most simple manner. You can also know the tools and tips for other web developer in a whole wide world. These are the Ajax and JavaScript list of sites. I hope it’s a big help for you while scripting your site.Ajax Rain Mini Ajax 40+ Tooltips Scripts Lightbox 2 Ajax Tutorials Dustin Bachrach a developer blog Ajax and JavaScript Galleries Moo Tools Demos Web 2.0 Javascript Loader Generator jQuery Ajaxload
    By: My Expedition in Life
     
    How do I debug JavaScript and other script code in my application using Visual Studio .Net?
    2007-12-10 23:36:57
    1) In IE go to Tools/Internet Options.../Advanced Tab and clear the "Disable Script Debugging" check box options.2) In VS.Net in your project properties dialog, select "Debugging" under "Configuration Properties" and make sure that "Enable ASP.Net Debugging" is turned on.3) You can then set break points in script code in VS.Net in custom script files or the application aspx file.4) VS.Net should give you detailed debugging information for variables in the scope just like other high-level languages.
    By: Dotnet Interview Questions, ASP.NET, ADO.NET, AJAX
     
    Javascript
    2007-12-08 21:46:00
    A simple programming language developed by Netscape to enable greater interactivity in Web pages. It shares some characteristics with JAVA but is independent. It interacts with HTML, enabling dynamic content and motion.Bahasa pemrograman sederhana yang dikembangkan oleh Netscape untuk meningkatkan interaktivitas halaman web. Javascript menggunakan karakteristik bahasa Java, namun tetap independen. Javascript diterapkan pada HTML untuk menghasilkan konten web yang dinamis dan atraktif.Indo Translator : The English-Indonesia IT glossary http://indo-translator.blogspot.com
    By: indo translator : computer internet glossary, lex
     
    Are You Tired Of Wasting Time And Money Searching For That Ideal JavaScript Pop Up Window Software?
    2007-11-30 00:32:00
    What exactly is a JavaScript Pop up Window generator? A JavaScript pop up window generator or pop up maker is a computer application online advertisers use to design, develop a piece of code to install and maintain what is known as a pop up advertisement or pop up window on one or many websites. These applications like most applications range from the very basic to the more complex ones which usually come with a lot more features. The simple applications design and develop very basic pop up ads that are block able while the complex applications have many added features like hover ads or the ability to add images, audio, or video. Many online advertisers are now realizing the importance of capturing email addresses and generating traffic to their website and a fabulous way of doing both these is by using a pop up or pop up ad on their website. By using DHTML or JavaScript Pop up Generator Software the advertiser can create a pop up window for their site which will catch their website visitor's attention and hopefully will lead to a subscription and more traffic. What is great about JavaScript Pop up Window generator is the advertiser can create custom pop-ups in any style, size, color etc of their choice to achieve their desired outcome of getting their message across to the viewer. It's as simple as adding the data you want into the software and the software will then generate the code to place on your website with your desired preferences to create the pop up. The more enticing your pop up the more likely you are of being successful in achieving your end goal. When pop-ups started to become the rage they started to get annoying as they would hang your browser or even worse than this you're operating system for ages. Then into 2000 the major browsers like Opera and Mozilla to name just two started incorporating tools to block these pop-up ads. Then in 2004 Microsoft released Windows XP service pack 2 which added the blocking feature to Internet Explorer. These
    By: All of Web Design
     
    How can you write javascript value in codebehind?
    2007-10-02 13:09:00
    Correct Method : ClientScript.RegisterStartupScript(this.GetType(),"OpenCv", jscode); "jscode" is a string containig the javascript code .
    By: Microsoft & Dotnet Interview Questions
     
    Membuat script mudah Javascript Mendeteksi nama jenis browser pengunjung
    2007-09-22 05:24:28
    Daripada tidak ada bahan menulis, lebih baik saya kasih info tutorial script mengenai cara mendeteksi / mengidentifikasi / melacak nama jenis browser visitor yang mengunjungi website kita.
    By: Belajar Tutorial apa itu Adsense, Adbrite, SEO , e
     
    Tips blogger css validator menggunakan "JavaScript Console" pada Flock Browser
    2007-08-28 10:01:43
    Ada tips cepat untuk mengecek validasi dari code html terutama kode CSS blogger yaitu dengan cara menggunakan salah satu tool yang merupakan fasilitas dari Flock Browser. Tentu sudah pernah dengar Flock Browser khan, yup.. ini juga merupakan salah satu keluarga dari mozilla dan Firefox. Jika belum memiliki Flock Browser kamu bisa download Disini. Kenapa saya menyarankan menggunakan tool ini,
    By: :: Oom's Visual Basic Tutorial ::
     
    Intro to Adobe AIR with HTML and JavaScript by Kevin Hoyt
    2007-08-08 09:35:09
    New video available about intro to Adobe AIR with HTML and JavaScript by Kevin Hoyt. You can find... [[ This is a content summary only. Visit my website for full links, other content, and more! ]]
    By: Flash Enabled - Get Ready with Flash...
     
    ActionScript / JavaScript Script Bridging in Adobe AIR by Kevin Hoyt
    2007-08-08 09:32:29
    New video available about ActionScript / JavaScript Script Bridging in Adobe AIR by Kevin Hoyt. You... [[ This is a content summary only. Visit my website for full links, other content, and more! ]]
    By: Flash Enabled - Get Ready with Flash...
     
    Building AIR Applications with JavaScript Frameworks by Andre Charland
    2007-08-08 09:25:40
    New video available about building AIR Applications with JavaScript Frameworks by Andre Charland.... [[ This is a content summary only. Visit my website for full links, other content, and more! ]]
    By: Flash Enabled - Get Ready with Flash...
     
    Javascript Paragraph Crossfader
    2007-07-23 22:24:28
    Ever had 2-3 or more text paragraphs and wanted to display them in an unique way? Well, this javascript is it. Javascript Paragraph Crossfader allows you to smoothly fade a paragraph over another. Download Javascript Paragraph Crossfader View the CLD File Archive Share This
    By: CrazyLeaf Design Blog
     
    JavaScript Interview Question
    2007-07-19 11:18:00
    1.Can javascript code be broken in different lines?2.What is a prompt box?3.What is the difference between an alert box and a confirmation box?4.How to access an external javascript file that is stored externally and not embedded?5.Is a javascript script faster than an ASP script?6.What does the “Access is Denied” IE error mean?7.How to set a [...]
    By: Interview Questions - Technical Interviews
     
    AS3 Tuturial - Variables from JavaScript To Flash CS3
    2007-07-05 10:55:05
    Ahmet Gyger wrote a nice tutorial about passing variables from Javascript to Flash CS3 using... [[ This is a content summary only. Visit my website for full links, other content, and more! ]]
    By: Flash Enabled - Get Ready with Flash...
     
    35+ AIR Examples for JavaScript Developers
    2007-07-04 14:33:58
    Via Ben Frota Blog, Kevin posted 35+ Air examples for Javascript develop. As you know, Kevin was... [[ This is a content summary only. Visit my website for full links, other content, and more! ]]
    By: Flash Enabled - Get Ready with Flash...
     
    Tutorial membuat jam dengan program HTML / Javascript
    2007-05-12 17:01:54
    Supaya makin lengkap artikel di blog ini, kali ini saya bikin tutorial mengenai membuat program jam dengan HTML / Javascript. Sebenarnya tidak sulit untuk membuat program ini, dengan beberapa baris kode sederhana saja, kita dapat membuat program ini berjalan baik. Ada 2 cara yang saya kemukakan disini, yang pertama saya ambil dari suatu situs tutorial javascript : (more…)
    By: Belajar Tutorial apa itu Adsense, Adbrite, SEO , e
     
    (dasar HTML) Membuat popup window dengan javascript
    2007-05-09 08:14:27
    Karena begitu banyak permintaan dan visitor yang nyasar dari search engine untuk tutorial membuat jendela pop up atau popup window, saya tuliskan artikelnya kali ini. Tetapi program ini tidak akan berjalan jika fungsi popup window terblokir oleh browser. Para developer browser membuat fitur blokir popup window tersebut karena pada tahun-tahun sebelumnya banyak sekali keluhan pengguna internet yang sangat terganggu oleh iklan-iklan popup yang muncul tiba-tiba sehingga menimbulkan ketidaknyamanan dalam berinternet, apalagi para pembuat spyware/trojan/malware/worm juga menggunakan celah keamanan ini untuk menyebarkan script berbahayanya. Berikut ini saya kutip dari w3schools, anak buah para “mafia” internet pembuat standarisasi dunia internet (W3C). http://www.w3schools.com/htmldom/met_win_open.asp ada beberapa cara untuk memanggil function / procedure pemanggil jendela popup, tetapi saya berikan 2 saja dari w3c: (more…)
    By: Belajar Tutorial apa itu Adsense, Adbrite, SEO , e
     
    Javascript-Sorting Dates in List Box
    2007-03-31 00:52:00
    <html><head><title>Javascript-Sorting Dates in List Box</title><script language="JavaScript">function Sort_Dates() { var x, y, holder; var list_box = document.frm.list_dates; FirstDate = new Date(); SecondDate = new Date(); for(x = 0; x < list_box.options.length; x++) { for(y = 0; y < (list_box.options.length-1); y++) { array_first = list_box.options[y].value.split("/"); array_second = list_box.options[y+1].value.split("/"); FirstDate.setMonth(array_first[0]); FirstDate.setDate(array_first[1]); FirstDate.setYear(array_first[2]); SecondDate.setMonth(array_second[0]); SecondDate.setDate(array_second[1]); SecondDate.setYear(array_second[2]); if (FirstDate >SecondDate) //here you can modify the condition to work for ascending or descending { holder = list_box.options[y+1].value; list_box.options[y+1].value = list_box.options[y].value; list_box.options[y+1].text = list_box.options[y].value; list_box.options[y].value = holder; list_box.options[y].text = holder; } } }}</script></head><body><form name="frm"><select name="list_dates" multiple size="10"> <option value="3/31/2007">3/31/2007</option> <option value="2/15/2007">2/15/2007</option> <option value="3/25/2007">3/25/2007</option> <option value="2/6/2007">2/6/2007</option></select><input type="button" value="Sort Dates"></form></body></html>Disclaimer: Any code or advice given is for instructional purposes only. We will not be responsible for any loss or damage caused by using this script.
    By: Smash Scripts
     
    JavaScript for Quote of the Day
    2007-02-10 15:56:00
    If you are wondering whether I manually add a Quote of the Day, the answer is no. I have used a simple JavaScript to display a new Quote everyday. There are a few JavaScript codes written by several people - some make you pay to buy their program, while others allow you to tap on to their Quotes database. I was looking for something simple, and unfortunately a number of those I found online do not work. In the end, I looked up books and came up with a simple JavaScript which stores quotes and authors in a format called “arrays”. I keyed in 31 quotes and the script will display a new quote every day of the month. If you would like to add one, go to Template ->Page Elements and click “Add a Page Element” to the place you want your Quote of the Day to appear. Add a...
    By: Tips for New Bloggers
     
     
    TopBlogging
     
     
    TopBlogging
    TopBlogging.com TopBlogging.com
    eXTReMe Tracker