I am trying to get javascript framework XUI working, but having trouble getting it to work on any desktop browser. More on XUI here... http://xuijs.com/documentation

<script type='text/javascript' src='xui-more-1.0.0.min.js'></script>
<!-- <script type='text/javascript' src='xui-bb-1.0.0.min.js'></script>  -->

<script>

   x$('button').click(function(e){ 
        alert('tee hee!');
    });

   x$('a.navigation').css({ background:'yellow' });

   alert("at least this works!");
</script>

<a href='http://google.com' class='navigation' >this is a link</a>
<br><br>
<input type='button' id='button' value='click me!'>
link|improve this question
what browser are you checking it with and what is the error you are getting? – livingtolearn Sep 17 '10 at 10:28
feedback

4 Answers

You need to wrap your code in a 'ready' function:

<script type="text/javascript">
xui.ready(function() { 
    // x$ code in here...
});
</script>
link|improve this answer
feedback

Here you go, this is an example

x$(window).on('load', function() { 
x$('#button').click(function () {
    alert('Hello');
});
});
link|improve this answer
feedback

Mozilla and IE. No errors!

link|improve this answer
feedback

Robert- No errors, but it don't work!

try:

   x$('#img_del1').on( 'click', function(e){    

Also move the js to the bottom of the page.

I haven't found equivalent for $(document).ready() in XUI.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.