Search:
Type: Posts; User: samanyolu
Search :
Search took 0.02 seconds.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title></title>
<script...
I found this script:
<script type="text/javascript">
/*
WebSnapr - Preview Bubble Javascript
Written by Juan Xavier Larrea
http://www.websnapr.com - xavier@websnapr.com
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title></title>
<script...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8"
http-equiv="content-type">
<title></title>
<script...
else if (document.form.password.value == ""))
While mouse is over the link, span displays in Firefox and Opera.
span don't display in İnternet Explorer 6. What can I do? Thanks...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01...
It is working in Opera 9.1
<style type="text/css">
.a { background-color: red; }
.b { background-color: blue; }
.c { background-color:yellow; }
.d { background-color:lime; }
</style>...
document.getElementById("show").innerHTML ="no" ;
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<script...
tbody
<body>
<div id="mydiv"></div>
<script type="text/javascript">
var el = document.getElementById('mydiv');
var table=document.createElement('table');
var tbody =...
<script type="text/javascript">
function showHide(c,d){
var el = document.getElementById(c);
var el2 = document.getElementById(d);
el2.style.display = (el.checked)? "block" : "none";
}...
<script type="text/javascript">
var arr = [
["istanbul","izmir","Ankara", "Bursa"],
["Münih","Berlin"],
["New York", "Texas", "California"]
];
function fill() {
var el =...
<script type="text/javascript">
var str = "+1 (514)255-5555";
var str = str.replace(/[+()-]/g," ");
str = str.replace(" "," ");
//alert(str);
var s = str.split(" ");
var arr = [];
for(var i...
<script type="text/javascript">
var i = 1;
function count() {
alert(i);
i++;
}
</script>
<input type="button" onclick="count()">
I use Internet Explorer 6.
When I clicked to the div element, message box displays "Your message is e".
<style type="text/css">
#test {
border: 1px solid #000000;
padding: 10px;
...
main.htm
<HTML>
<HEAD>
<title>Frames</title>
<style type="text/css">
body {margin:0px;}
.myiframe {width:100px; height:100%; }
.myclass { position:absolute; left:0px; top:0px;...
<script type="text/javascript">
function showHide(t) {
var el = document.getElementById('tableid');
var tr, i = 0;
while(tr = el.rows[i++]){
tr.style.display = (tr==t)? "none" : "block";
}
}...
It is working on Internet Explorer.
It is not working on Firefox and Opera.
<style type="text/css">
#test {
border: 1px solid #000000;
padding: 10px;
background-image:...
<script type="text/javascript">
function fill(){
var el = document.getElementById('sel');
var el2 = document.getElementById('sel2');
el2.options.length = 0;
if(el.selectedIndex >0) {
var c...
1.Do you like Cars?
<input type="radio" id="r0" name="rad1" onclick="document.getElementById('clairef').style.display ='block'; ">Yes
<input type="radio" id="r1" name="rad1"...
<script type="text/javascript">
function fill(){
var arr = [ ["a1","a2"], ["b1","b2"]]
var el = document.getElementById('sel');
var el2 = document.getElementById('sel2');
el2.options.length =...
<script type="text/javascript">
function show(johnnypark) {
var d, i = 1;
while(d= document.getElementById('div'+(i++))) {
d.style.display="none";
}
var el =...
<input type="text" maxlength="3" onkeyup="this.value = this.value.toUpperCase();">
<script type="text/javascript">
function show() {
var el = document.getElementById('divid');
el.style.display ="block";
el.style.zIndex ="2";
el.onclick = function() {this.style.display...
\\.\
When I click the image, position of x and y will be written in span.
I tried this:
start:setTimeout(function(){document.getElementById('imgid').onclick=function(){mouse.get;}},200)
or...
<script type="text/javascript">
function fun(obj)
{
var el = document.getElementById(obj);
el.innerHTML = 'Different Text';
}
</script>
<a id="ExpColLink" href="javascript:fun('ExpColLink');"...