Monday, March 22, 2010

Upload any document FREE!

http://hotfile.com/

Ajax Cache-Problem with Internet Explorer.

Include those lines into php file.

header('Pragma: no-cache');
header('Cache-Control: no-cache');
header('Expires: 0');

Thursday, March 11, 2010

Jquery And PHP Draggable Division

http://webdeveloperplus.com/jquery/collpasible-drag-drop-panels/

Wednesday, March 10, 2010

IE7 problem For select Box

document.getElementById("prabhag_Bill").options[document.getElementById("prabhag_Bill").selectedIndex].text;

Monday, March 8, 2010

Browservise innerText and textContent

var browserName=navigator.appName;
var browserVer=parseInt(navigator.appVersion); 

if(browserName=="Netscape") 
    var curentArea = currentTd.parentNode.cells[currentColoumnIndex].textContent; if(browserName=="Microsoft Internet Explorer")
    var curentArea = currentTd.parentNode.cells[currentColoumnIndex].innerText;

innerText and textContent

Use the following code in javascript to acquire the same functionality as innerText.
var myText = document.getElementById(’divText’).textContent; // same as innertext.