Developer Query
- http://www.conditional-css.com/
- http://www.elated.com/articles/internet-explorer-conditional-comments/
- http://www.javascriptkit.com/dhtmltutors/csshacks.shtml
- http://web.enavu.com/demos/carousel.html
- http://www.dynamicdrive.com/dynamicindex4/stepcarousel.htm
- http://www.smashingmagazine.com/2007/04/18/14-tab-based-inferface-techniques/
- http://devthought.com/wp-content/moogets/BarackSlideshow/demo.html
- http://www.leigeber.com/2008/12/javascript-slideshow/
- http://snook.ca/archives/html_and_css/css-text-rotation
- http://windows.microsoft.com/en-US/internet-explorer/help/ie-9/is-the-internet-explorer-9-beta-right-for-me
- http://css-tricks.com/how-to-create-an-ie-only-stylesheet/
- http://wowslider.com/jquery-slider-flux-slices-demo.html
- [if IE] text-decoration: expression(hideFocus='true');
- selector { min-height:500px; height:auto !important; height:500px; }
Valid XHTML flash embed code | Simple flash embed code
<embed width="480" height="290" type="application/x-shockwave-flash" src="images/player.swf" style="" id="main_flash" name="main_flash" bgcolor="transparent" quality="true" wmode="transparent" allowscriptaccess="always" allowfullscreen="true">
Embedding Flash
How to Embed Flash and Non Flash in a Website
Alt content for Flash browsers | Code for Flash and Non Flash
<div id="flashBannerContent1"><a href="http://www.shubelal.com/" target="_self">
<img src = "storebilling-hero-756x252.jpg" border = "0" alt="Store Billing" title="Store Billing">
</a>
</div>
<script type="text/javascript" src="http://www.shubelal.com/script/swfobject.js"></script>
<script type="text/javascript">
var fo = new SWFObject("hero-756x252.swf", "frontpage", "756", "252", "8", "#FFFFFF", true);
fo.addParam("allowscriptaccess", "sameDomain");
fo.addParam("wmode", "transparent");
fo.addParam("menu", "false");
fo.write("flashBannerContent1");
</script>
How to Embed YouTube Playlists in a Website / WebPage
<object width="480" height="385"> <param name="movie" value="http://www.youtube.com/p/ID"></param> <param name="allowFullScreen" value="true"></param> <param name="allowscriptaccess" value="always"></param> <embed src="http://www.youtube.com/p/ID" width="480" height="385" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true"> </embed> </object>
What's the difference between display: none and visibility: hidden
If visibility property set to "hidden", the browser will still take space on the page for the content even though it's invisible.
But when we set an object to "display:none", the browser does not allocate space on the page for its content.
Example:
<div style="display:none">
Content not display on screen and even space not taken.
</div>
<div style="visibility:hidden">
Content not display on screen but it will take space on screen.
</div>
Difference in GET and FORM method in posting data
We can send Request to the Server by both the GET and POST methods of a form.
Both methods are used for form data handling where bothe have some difference on the way they work.
GET : In GET method data gets transferred to the processing page in name value pairs through URL, so it is exposed and can be easily traced by visiting history pages of the browser. So any login details with password should never be posted by using GET method.
ii) Data is appended to the URL.
iii) It is a single call system
iv) Maximum data that can be sent is 256.
v) GET request is comparatively faster
vi) This is the default method for many browsers
POST:
i) Data is more secure.
ii) Data is appended to the URL.
iii) It is a two call system.
iv) There is no Limit on the amount of data.That is characters any amount of data can be sent.
v) POST request is comparatively slower.
vi) No default and should be Explicitly specified.


