Search:
Type: Posts; User: twseitex
Search:
Search took 0.02 seconds.
-
Hi,
preload need runtime machine of player
preload images in javascript --> use new Image() function
preload flash --> use functions of flash runtime, maybe...
-
Hi,
if(function_1()){function_2();}
// function_2 must wait
-------------------------------------------
-
Hi,
maybe a hidden button (not rendered) can not have events like onclick
------------------------------------------------
intput submit see...
-
Hi,
var arDomain=new Array // pointer
(
...
);
if(arDomain == true) // compare pointer with boolean
-
Hi,
HTML charset see http://msdn.microsoft.com/en-us/library/aa752011.aspx
ISO Latin-1 Character Set see http://msdn.microsoft.com/en-us/library/aa752007.aspx
textarea object see...
-
Hi,
<select id="quantity" ....>
ac=document.getElementById('quantity').value; // returns value of property .value of SELECT object
--------------------------------------
<SELECT...
-
Hi,
source code of http://madconfusion.com/photo-scatter.php
function SetupImages()
{
images = new Array(); // without var declaration
// you create YOUR new array
// dont forget: in...
-
Hi,
my comments explain using of collection or alternate HTML DOM function
-------------------------------------------
if you want delete an option <option selected>Select A City</option>...
-
Hi,
see that example
// ------ preload image-data into browser cache before browser renders images
var arImageForPreload=new Array // create image
(
new Image(), // create iamge for...
-
Hi Nicola001,
function verticalFix()
{
var sidebar = document.getElementById("title");
sidebar.style.top = document.scrollTop(30);
}
window.onscroll = verticalFix();
-
Hi,
this website use facebook
<html class="Corporate Corporate" lang="en-US" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraph.org/schema/">
<meta property="og:image"...
-
Hi,
function Ran()
{
var arReturn=new Array
(
1,
show1()
);
-
Hi,
var temp = new Number(document.getElementsByName('total')[0].value);
better
var intValue=parseInt(document.getElementsByName('total')[0].value); // string
if(!isNaN(intValue))
{
//...
-
Hi
Javascript object String see http://msdn.microsoft.com/en-us/library/ecczf11c(v=VS.94).aspx
-
Hi,
object window see http://msdn.microsoft.com/en-us/library/ms535873.aspx
list of all objects in HTML DOM see http://msdn.microsoft.com/en-us/library/ms533054.aspx
-
Hi,
<form ID="idIfForm" name="classic">
var objForm=document.getElementById("idIfForm"); // HTML DOM function
-----------------------------
<select name="styles" size="1"...
-
Hi,
example for open image in new window
<html>
<head>
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
<!--
function ImageZoom(X00,X01,X02,X03,X04,X05,X06,X07,X08)
// X00 filename...
-
Hi,
use Opera to check code
Inline script compilation
Syntax error at line 6 while loading:
????!%()-:,.;(\s)]$/; //oi xaraktires
--------------------^
Invalid character
-
Hi,
A Element | a Object see http://msdn.microsoft.com/en-us/library/ms535173.aspx
object location (f.e. location.search) see http://msdn.microsoft.com/en-us/library/ms535866.aspx
-
Hi,
f.e.
<IMG ID="idofImage" SRC="1x1pic_transparent.gif>
<script>
var real_width=100;
var real_height=200;
-
Hi,
function pageLoad ()
{
var doc = window.document.forms[0];
if (document.getElementsByTagName) // exist, is member of HTML DOM of all browsers
{
var hrefs =...
-
Hi,
function denetle (metin,alanadi)
{
if(document.hesapla.alanadi.value=='')
{document.hesapla.alanadi.value = metin;}
}
document.hesapla ist the pointer of an element of form, don't...
-
Hi,
children of html document are head and body: body after head.
brwoser parses first head then body.
elements of head useable in body.
elements of body useable in head only if at this...
-
Hi,
here runable code and see zip file, have fun :-)
<html>
<head>
<script type="text/javascript">
// cat Tom like a gif animation
-
Hi,
two returns in a event handler .... aja.
and this is correctly too ?
function checkFormHandler()
{
return checkForm(document.getElementById("idForm"));
|
|