Book Image

Mastering jQuery

By : Alex Libby
Book Image

Mastering jQuery

By: Alex Libby

Overview of this book

<p>Mastering jQuery has been written not only to help maximize your skills with core functionality in the library, but also to explore some of the more intriguing ways of using the library to achieve real-world solutions that could feature on any website or online environment.</p> <p>You'll start with a look at some of the more advanced ways to incorporate the library into your pages, followed by working with forms and advanced form validation using regular expressions. Next you'll move on to animating in jQuery, advanced event handling, and using jQuery effects.</p> <p>Finally, you will develop practical examples of using jQuery with external functionality such as node-webkit, before finishing with a session on optimizing your version of the library for maximum efficiency and exploring best practices for using QUnit.</p>
Table of Contents (21 chapters)
Mastering jQuery
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Taking things further


Phew! We've certainly covered a lot over the last few pages!

However, in the grand scheme of life, we've only scratched the surface. We can do a lot more with our application or even explore it to help improve our skills when using Node-WebKit with jQuery. To get you started, here are a few ideas:

  • The application is a perfect base for resizing images or even compressing them; we can do this online, but there are implications, principally around confidentiality and the size of image.

  • The upload facility is only partially working. We use the BlueImp file upload plugin, but it's not actually doing anything. How about getting it working within our application?

  • How about displaying an icon for the file type or even a small thumbnail if we're uploading an image?

  • There's no way to clear the list without restarting the application—it should be easy to fix this…

  • We deliberately didn't include any error checking to keep things simple; how about adding in some now?

  • I think the interface...