mpoznecki
(Mpoznecki)
1
Hi, I have a working xul extension. But when I try to do a split on the target it stops working.
var target = event.originalTarget;
window.alert(target); //works
var site = target.split("?");
window.alert(site[0]); //does not work
Should I try it a different way?
target
is not a string, and thus you can’t just split it, most likely.
mpoznecki
(Mpoznecki)
3
I also tried target.tostring().split("?") with the same results.
mpoznecki
(Mpoznecki)
4
Sorry, I got it. I forgot to capitalize the “S” in toString(). Works now. Thanks.