There might be certain times when you would want to open a thickbox with onclick instead of the regular a href. Say you want to make a whole td cell clickable. To do so follow the below steps. 1. Open thickbox.js 2. Find the line – tb_init(‘a.thickbox, area.thickbox, input.thickbox’);//pass where to apply thickbox 3. Add… Continue reading Open Thickbox With Onclick
Category: jQuery
jQuery Useful Links Of Tutorials, Manual, Examples
jQuery with its huge number of plugins is a Javascript framework that can do everything … well, almost everything 😛 So I list below few links that will help people working with jQuery 1. http://jquery14.com/ (14 consecutive days of new releases for jQuery 1.4)2. http://api.jquery.com/visual/ (A jQuery Manual that is helpful and stylish)3. http://jqueryui.com/demos/ (jQuery… Continue reading jQuery Useful Links Of Tutorials, Manual, Examples
JQuery Validation for Array of Input Elements
Sometimes we need to validate an array of input elements: For example – Select One aa bb cc dd Select One ee ff gg hh Select One ii jj kk ll Now we will use jquery validation plugin jquery.validate.js for validating the form. The condition will be that user will have to choose category from… Continue reading JQuery Validation for Array of Input Elements
Using jQuery and Prototype together
Yes. You can use jQuery and Prototype together in the same page. I have been using jQuery and Prototype for quite some time now. But have always used them on different projects knowing for sure that if not anything else, their ‘$’ would clash. However I found out a solution. By default the ‘$’ in… Continue reading Using jQuery and Prototype together