Don't dare to store more information in your Brains, It will Blast.......
Thursday, 29 March 2012
Wednesday, 28 March 2012
Tuesday, 20 March 2012
Run JavaScript Only After Entire Page Has Loaded
$(window).bind("load", function() {
// code here
});
use this :http://css-tricks.com/snippets/jquery/run-javascript-only-after-entire-page-has-loaded/
ex:
$(window).bind("load", function() {
debugger;
var divs = $("div.CollapsiblePanelClosed")
var spans = $("span.spanclass")
for (var i = 0; i < divs.length; i++) {
if (spans[i].innerHTML == "") {
document.getElementById(divs[i].id).style.display = "none";
}
}
});
Monday, 19 March 2012
Sunday, 18 March 2012
Tuesday, 6 March 2012
Subscribe to:
Comments (Atom)