Andrew Chalkley schrieb:
> I found this works...
>
> alert(this.attributes.getNamedItem("val").value + " " +
> this.firstChild.nodeValue);
>
> is there anything simpler - more jQuery-like?
Hi Andrew, not yet, the bug you found is a known one and popped up on
this list several times.
I found this works...
alert(this.attributes.getNamedItem("val").value + " " +
this.firstChild.nodeValue);
is there anything simpler - more jQuery-like?
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/
I have a sample of code that works in Firefox but not IE (6).
jQuery code:
$.post("xml_listbox.php",{
table: "link_category",
value: "cat_id",
label: "cat_name"
},function(xml){
$("options/option",xml).each(
function()
{