04 May 2010 at 14:51
Simon
HTML, Technology
No Comment
I use a lot of snippets when I program, those little shortcut that transform several lines of code. Zen coding goes further by proposing to use snippets the same way as the CSS selection.
For example the following line of code:
div#header
is tranformed into:
<div id=”header”></div>
And this:
div # header> p> lorem
is transform into :
<div id=”header”>
<p>Lorem ipsum dolor [...]
04 May 2010 at 14:24
Simon
Adobe, Adobe Flex, HTML
No Comment
This example shows how to create a JSP proxy for XML request Server-Side Scripting. When you write a Flex application, and when you are accessing remote hosts for services you have no control of (ex: RSS Feed), then you find out there is no cross domain file ( crossdomain.xml) and Flex app will complain. [...]
16 Feb 2010 at 11:31
samantha
HTML, Javascript
No Comment
If you want to access your document innerHTML, you can use the following
document.all[0].innerHTML
or
document.documentElement.innerHTML if you want to skip the tags <HMTL> tags