Archive for the ‘AJAX, DOM, JavaScript, CSS, XML, XHTML’ Category

dCamp Bangalore V 1.0 rocked!

Monday, September 17th, 2007

The first ever design unconference in India, dCamp Bangalore witnessed participation from an interesting mix of designers, developers, product managers etc., Over 75 campers and 10 speakers participated at Yahoo’s campus, yesterday. The good folks from Yahoo Bangalore sponsored the event and made arrangement for t-shirts, lunch and Beer! ...

Speaking at dCamp Bangalore V 1.0

Thursday, September 13th, 2007

I am going to give a live-demo on designing simple ‘Web 2.0 layouts’ along with one page primers on CSS, JavaScript, DOM topped-up with a lil’ bit of YUI This is live-demo is targeted at Interaction Designers who are interested in bridging the gap between design & developement. understanding the building blocks of ...

AHAH!

Thursday, June 14th, 2007

AHAH = Asynchronous HTML and HTTP is a subset of AJAX without the X(XML) Update web pages dynamically using JavaScript and XHTML, instead of XML. Like in AJAX, use XMLHTTP to raise a Request. The state-change of the request when the Response is received is ...

How to load a HTML file into a Div

Friday, June 8th, 2007

Used an “onclick function” and successfully loaded a HTML file into a Div. JavaScript: onclick=function(){ var el=document.getElementById("x") el.innerHTML="iframe src=\"http://muthuonline.com/about_muthu\" >" < div id="x"> Wish there was an easier method like having a src for a div. However had issues setting the iframe width. After getting this done, i was told that iframe kinda ...

How to show a Div & hide the rest, simultaneously

Wednesday, June 6th, 2007

Encountered an interesting issue while working on the “Accordion Menu” Problem : Multiple Divs get thrown up, when multiple links get clicked. The hierarchy of these Divs is determined by the Z-index. Divs with lower Z-index value, get hidden behind Divs with higher Z-index value. Either the navigation ...