[wpfilebase tag=file id=12 /]From: http://wordpress-portable.webnode.com/


WordPress Portable is the package some have been waiting for. Just download it, extract on your local drive or flash drive and run it!
Possible uses for a portable WordPress
Trying new WordPress versions
Showcasing your work to clients
Theme development & testing
Plugin development & testing
Using WordPress Portable
To run WordPress Portable just start the file in the main folder and double-click the system tray icon to open your WordPress page. To quit WordPress Portable right-click the system tray icon and then click exit.

Read more: http://wordpress-portable.webnode.com/
Create your own website for free: http://www.webnode.com

 3,897 total views

From: http://bytes.com/topic/javascript/answers/743778-please-help-me-updating-dom-element-javascript-contents

How to add code with createTextNode using “appendChild” to a “<script>”.

Fact is, as of right now- 2010/05/17 with the Internet Explorer 8 and below you cannot use the “document.createTextNode()” and append it to a “document.createElement(‘script’)”.

So the code below will allow you to by default use the normal method and fallback to IE’s method.

For IE you must use the .TEXT.

Eg: document.createElement(‘script’).text=”TEST CODE”;

document.newScript= function(s){
var el= document.createElement(‘script’);
el.type= ‘text/javascript’;
try{
el.appendChild(document.createTextNode(s));
}
catch(er){
el.text= s;
}
return document.getElementsByTagName(‘head’)[0].appendChild(el);
}

 1,023 total views