In this code snippet i will show you how you can click a button after an input field wich creates a popup. This popup is actually a plain html page where you can enter data into a textarea. When the user is done editing text in the textarea, he can hit the save button and [...]
You can download podcasts from webmasterradio for free. How can you do this ?
Well it's quite easy, open the source of the podcast page. For instance this shoemoney show.
When you go to line 470 you can see the code for the object that is used for the music player.
At line 479 you see [...]
When you would try to change the filepermission with a php script on your hosting, you would probably run into an "Operation not permitted" error.
This is because save mode is enabled. To bypass this limitation you could login unter ftp and change the file permission from there.
PLAIN TEXT
PHP:
//settings
$folders = array("/feeds/","/sitemap/");
$ftp_details['ftp_user_name'] = "username";
$ftp_details['ftp_user_pass'] = "pw";
$ftp_details['ftp_root'] = [...]
Since i recently installed vista and had to install every Firefox plugin again i can tell you wich add-ons i definately use on a daily basis:
Adsense
fireform
Live HTTP headers
firebug
lori
You can use this javascript function to resize the height of your iframe depending on the size of your parent page.
PLAIN TEXT
JAVASCRIPT:
<script language="JavaScript">
function iFrameHeight() {
if(document.getElementById && !(document.all)) {
h = document.getElementById('main').contentDocument.body.scrollHeight;
document.getElementById('main').style.height = h + 100;
}
else if(document.all) {
h = document.frames('main').document.body.scrollHeight;
document.all.main.style.height = h + 100;
}
}