Tagged Questions

3
votes
2answers
2k views

Jquery prepend click handler

If you know a better way to do this then please let me know. Right I have a page which will contain lots of buttons, charts and tables. I have read about stopping event propogation and that's what ...
0
votes
2answers
62 views

jQuery img add doesn't show

I have the following jQuery code: $('#foo').click(function () { var loading = $('<img id="loading" src="images/loader.gif" alt="loading" />'); $('#stars').prepend(loading); ...