Chris Dance

Results 54 comments of Chris Dance
trafficstars

`checkDisabled` sounds reasonable and is in effect self documenting. I think `checkAttrName` could be more appropriately named and/or document. Maybe `checkUnnamed`? History: Unnamed fields are not sent on form submits...

Hey @elpd, Thanks for submitted your ideas. Your approach is valid and I can see why and how you've implemented this. My initial gut-feel is that this does not belong...

Is there a demo page I can hit. I can then run this in the Chrome debug tools to see what's going on. I suspect a dirty state is being...

Are you able to do a file->save web page (complete), and email me the archive? It's: chris dot dance at papercut dot com I suspect they are doing something ajax'y...

That's a good request. I'll need to think about the most elegant way of implementing this. It might be worth adding a custom function hook as you've suggested. e.g. ```...

You can manually remove the "dirty" class on the form via your onclick event before attempting to navigate away. e.g. $myForm.removeClass("dirty"); // move to next page. If you can provide...

You'll need to use code like: $("#myForm").removeClass('dirty') on your click handler. Give that a go and let me know if results are any better.

I thinking it might be worth documenting this. It seems to have come up a few times. Chrome must not fire the submit event at the same time when it's...

The check/scanning is done on a form element change event such as a keypress. Modifications to the DOM such as adding fields do not automatically fire a scan. At a...

My feeling at the moment that this is a niche case. I think your solution is correct for your situation. I'd encourage you to maintain a fork for now, or...