FireFox: Browser Many Bugs dan Not Safe???
Sumber : Vivanews, BlogiVan
Monday, April 27, 2009 | 0 Comments
Fastest Web Browser and the Worst
Read more..
Monday, April 27, 2009 | 0 Comments
Bill Gates, The Microsoft founder
Source: wikipedia , BlogiVan
Read more..
Sunday, April 26, 2009 | 1 Comments
Young Hacker, Now Being a Security Consultant
Read more..
Sunday, April 26, 2009 | 0 Comments
James Gosling, Arsitek Bahasa Pemrograman Java
Source : Pikiran Rakyat (25 Januari 2005), BlogiVan
Read more..
Sunday, April 26, 2009 | 0 Comments
Simulation of Artificial AJAX
Hi all colleagues, this time I will share knowledge about the world of ya but web programming. This time I will discuss about the AJAX simulation but could not use AJAX. Qo Why? Is not it funny?
We will make our current simulation as data input. So Click the Save button, then what we are typing in the Input Text will appear at the bottom of an area without doing the refresh page.
If you're still curious, please try the tutorial below:
1. We create a php file named index.php which more or less like the script below.
<html>
<body>
<div id="menu">
<form action="proses.php" target="myiframe">
<input type="text" name="kata">
<input type="submit" value="Simpan">
</form>
</div>
<div id="isi"></div>
<iframe name="myiframe" style="display:none;"></iframe>
</body></html>
2. Create another file named script proses.php more or less as follows ..
<div id="data">
<?php
echo $_GET['kata'];
?>
</div>
<script language="javascript" type="text/javascript">
//--- Javascript below will move the contents of the iframe to the main document.
top.document.getElementById('isi').innerHTML=document.getElementById('data').innerHTML;
</script>
Please try .. If there is any script above is not working properly, Please leave a comment.
Please understand, this is only a simulation only. Could be developed if we has an database.
by: Ivan
Sunday, April 26, 2009 | 0 Comments
Create Back Button and Refresh
The following code / syntax Javascript to make the Back button:
<FORM>
<INPUT TYPE="BUTTON" VALUE="Back" ONCLICK="history.go(-1)">
</FORM>
if it will replace the function of the Back button to change the function into the Refresh button,
just change the event/aksinya onClick = "history.go(0)".
Good luck ...
by:Ivan
Read more..
Sunday, April 26, 2009 | 0 Comments
Displaying Message Box
Here is a tutorial to show message box in javascript:
<HTML>
<HEAD>
<SCRIPT language="JavaScript">
function MsgBox_OkCancel()
{
var pesan;
pesan = confirm('Are your sure?');
if(pesan)
{
alert("Run your command");
}
}
</SCRIPT>
</HEAD>
<BODY>
<a href="javascript: MsgBox_OkCancel();">Klik Disini</a>
</BODY>
</HTML>
Good Luck...
By : Ivan
Sunday, April 26, 2009 | 0 Comments
Displaying Input Box
Here is a tutorial for Grid Input ( Input Box ) in Javascript:
<HTML>
<HEAD>
<script>
function input_nama()
{
var isian=prompt("Please insert your name :")
alert("Hiii "+isian)
}
</script>
</HEAD>
<BODY>
<input type="button" onClick="input_nama()" value="Coba" />
</BODY>
</HTML>
Please friends to try and can be developed for interactive web ...
Easy right?
by : Ivan
Sunday, April 26, 2009 | 0 Comments