javascript - How to access HTML Elements with "load" in mootools core? -
whether load on mootools access html element? try access html element named class = replieslist, in code there
var tabs = getelementsbyclass ('replieslist'); alert(tabs);
but tabs variable print blank, how join loaded html element? i've tried using domready, not run @ all, printing on alert not.
please me out
if using mootools why don't using mootools selectors.
you can access element $$('.replieslist'). wronn in code missing "document" word write document.getelementsbyclass('replieslist');
but should prefer mootools selectors
Comments
Post a Comment