Far as I can tell, and that’s pretty far even though I do wonder if you can actually measure telling in distance, there isn’t a method directly used for validating a date in jquery. I find this rather odd. Not odd like how people keep watching Uwe Bol movies, more like odd that no one [...]
jQuery: Find a Form Action Using Jquery
This is pretty useful for people trying to pass in a generated action to a javascript file. Eh? SKIP IF YOU DON’T CARE ABOUT A REASON FOR USING THIS: Say you are using the jQuery post method to send things back to the server but all the code for that is in a seperate javascript [...]
jQuery Modal Dialog : Hide That Stupid X Button / Windows Close Button
This is quick one, so hold on to your… whatever. Want to get rid of that X at the top right of the modal “Control”? Well here it is: (The bold part, moron) jQuery(‘#WaitingDiv’).dialog({ autoOpen: false, bgiframe: false, height: 150, width: 200, modal: true, open: function(event, ui) { jQuery(‘.ui-dialog-titlebar-close’).hide(); } }); And that’s really it. [...]
jQuery – Check All Checkboxes Toggle Method Thingy
So here’s a quick on for all you boys and girls… and anything else I might have missed. Say you want to check all check boxes in a grid or whatever, but you want it to toggle. So if if it’s time to check all, all get checked and then the next time the button [...]
jQuery Grab Bag – Whole bunch of jQuery Functionality
You could look at this post as a self serving block that I will use to save stuff I don’t want to remember later. Or you could see it as a knowledge transfer that you the reader can learn from because I am a generous and giving tool. Whatever, I really don’t care. I won’t [...]