My searches has proved futile and I am hoping someone can give me some assistance. I am fairly new to javascripting as well.
I have built a site that consists of several DIV tags with an iFRAME in between. I have setup a javascript which loads a table inside the iframe's HTML page. The first cell of each row consists of a name.
I want to be able to click on each row and have the name in the first cell returned. For now I have been using alert function to determine if my code is working.
Here is my iframe source code:
<script type="text/javascript" src="./cgi-bin/jquery-1.8.2.min.js"></script>
<script language="Javascript">
function xmlhttpGetVMList(strURL) {
var xmlHttpReqVMList = false;
var self = this;
// Mozilla/Safari/Chrome
if (window.XMLHttpRequest) {
self.xmlHttpReqVMList = new XMLHttpRequest();
}
//IE
else if (window.ActiveXObject) {
self.xmlHttpReqVMList = new ActiveXObject("Microsoft.XMLHTTP");
}
self.xmlHttpReqVMList.open('GET', strURL, true);
self.xmlHttpReqVMList.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
self.xmlHttpReqVMList.onreadystatechange = function() {
if (self.xmlHttpReqVMList.readyState == 4) {
updatepage(self.xmlHttpReqVMList.responseText);
}
}
self.xmlHttpReqVMList.send(null);
}
function updatepage(str) {
document.getElementById("result").innerHTML = str;
}
$("#result").ready(function() {
JavaScript:xmlhttpGetVMList("./cgi-bin/db_list_vm.cgi");
//alert('Script DIV loaded'); // <-- useful to confirm the event has completed.
});
$("#result").ready(function () {
var table = document.getElementById('VMList'),
cells = table.getElementByTagName('td');
for (var i=0,len=cells.length; i<len; i++){
cells[i].onclick = function() {
alert(this.innerText);
}
}
});
</script>
<html>
<head>
<link href="./styles/default.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="countleft"></div>
<div id="countright"> <b>VM Count: </b></div>
<br>
<br>
<form name="f1">
<div id="result">Loading ......<img src="./images/loading.gif" alt="loading"></img></div>
</form>
</body>
</html>
The above code runs and fills in the innerText of DIV ID result with the following:
<table id="VMList">
<thead>
<tr>
<th class="vmname">VMName</th>
<th class="ipaddr">IP Address</th>
<th class="FQDN">FQDN</th>
<th class="Team">Team Name</th>
<th class="Owner">Owner</th>
</tr>
</thead>
<tbody>
<tr id="vmname">
<td class="vmname">SomeName</td>
<td class="ipaddr">PlaceHolder</td>
<td class="FQDN">PlaceHolder</td>
<td class="Team">PlaceHolder</td>
<td class="Owner">PlaceHolder</td>
</tr></tbody></table></div>
my script section that makes each row clickable doesn't seem to work. I believe it is because the code is running before the javascript finishs creating the table.
I'm looking for help getting this code to work after the table is created:
$("#result").ready(function () {
var table = document.getElementById('VMList'),
cells = table.getElementByTagName('td');
for (var i=0,len=cells.length; i<len; i++){
cells[i].onclick = function() {
alert(this.innerText);
}
}
});
Thanks in advance!!
$('#result').on('click', '#VMList td', function() { alert($(this).text()); });– adeneo Nov 8 '12 at 18:57onreadystatechangemethod for your AJAX, like with theupdatepagecall. – Ian Nov 8 '12 at 19:05