User Profile
Collapse
-
you also have to make sure you are doing thins asyncronously or the gif wont animate -
tables have there own dom functions
[CODE=javascript]row = table.insertRow ()
cell = row.insertCell( )[/CODE]
both functions take params for where the index should be
functions work in both IE and FFLeave a comment:
-
if you are doing dom manipulation js is very different in IE and FFLeave a comment:
-
i have sone something similar. if you are just html and javascript on the client side you need to have the ajax return either the outterHTML of the select you are working with (innerHTML if FireFox) you cant return objects to add to the select because IE cant handle that much manipulation.Leave a comment:
-
I dont believe so in javascript but as3 allows for cross-domain scripting as long as you set up a config file on the server you are trying to accessLeave a comment:
-
here is an example that will work in both firefox and IE. this should give you everything you would want to know about the radio button that was clicked
...Code:function radioClicked(btn){ var tbl,cell,row,rowIndex,cellIndex,tblID; cell = btn.parentNode; row= cell.parentNode; tbl=row.parentNode; while(tbl.nodeName!="TABLE")//this is incase the table has a body tbl=tbl.parentNode;Leave a comment:
No activity results to display
Show More
Leave a comment: