Source
Friday, January 16, 2009
JavaScript: Parent -> Frame function calls
For this example I have 2 html pages:
Page1.html and Page2.html
If Page2 is shown as iframe inside Page1 and has this function:
<script type="text/javascript">
function showMessage(m) {
document.getElementById("message").innerHTML = m;
}
</script>
Than it can be called from Page1 like this:
<script type="text/javascript">
window.onload = function() {
window.frames[0].showMessage("Hello from Main Page in iFrame");
};
</script>
Saturday, January 10, 2009
Friday, January 9, 2009
Monday, December 29, 2008
jQuery for Absolute Beginners: Video Series
Nettuts.com is a great site with many tutorials.
Here is a series of jQuery tutorials for beginners
Friday, December 26, 2008
Scrum: Ken Schwaber Talks Scrum at Google
Google Tech Talks
September 5, 2006
Ken Schwaber co-developed the Agile process, Scrum. He is a founder of the Agile Alliance and Scrum Alliance, and signatory to the Agile Manifesto. Ken has been a software developer for over thirty years. He is an active advocate and evangelist for Agile processes.
ABSTRACT
Scrum is an amazingly simple process that causes many, many changes when it is implemented. This seminar presents the basic framework of Scrum and some of the implementation issues associated with it.
Speaker:Ken Schwaber
Saturday, December 20, 2008
Transfer Visual Studio settings
I’m reinstalling Windows on my work computer and wanted to preserve all the current Visual Studio settings.
In case you didn’t know how it is done:
1. Open Visual Studio
2. Go to Tools->Import and Export Settings
3. Choose “Export selected…”
4. Choose which settings you want to export
5. Choose filename and location
6. Done :)
7. All you need to do now is to go to same menu on other VS and select import.