jquery Programming Glossary: treatment
jQueryUI: how can I custom-format the Autocomplete plug-in results? http://stackoverflow.com/questions/2435964/jqueryui-how-can-i-custom-format-the-autocomplete-plug-in-results part. It's an inline style. This means if you had multiple autocompletes on the same page they'd all get the same treatment. A css style would solve that. ...but it illustrates the main technique and it works for your basic requirements. working..
Extracting text from a contentEditable div http://stackoverflow.com/questions/3455931/extracting-text-from-a-contenteditable-div in particular is a hassle because of the way is does nbsp and new lines in text conversion that's why it gets the br treatment above to make it consistent so it needs 2 passes to be handled correctly. In the above #edit is the ID of the contentEditable..
When to use Vanilla JavaScript vs. jQuery? http://stackoverflow.com/questions/4651923/when-to-use-vanilla-javascript-vs-jquery will set it. Necessary in some cases. The sentences below sort of covered it. See this answer for a better treatment. el.getAttribute 'someName' ...in order to access an attribute directly. Note that attributes are not the same as properties..
jQuery .data() not retrieving data-* http://stackoverflow.com/questions/6509841/jquery-data-not-retrieving-data data Attributes As of jQuery 1.4.3 HTML 5 data attributes will be automatically pulled in to jQuery's data object. The treatment of attributes with embedded dashes was changed in jQuery 1.6 to conform to the W3C HTML5 specification . For example given..
Unable to set data attribute using jQuery Data() API http://stackoverflow.com/questions/6827810/unable-to-set-data-attribute-using-jquery-data-api demo on my original answer below doesn't seem to work any more. Updated answer Again from the .data documentation The treatment of attributes with embedded dashes was changed in jQuery 1.6 to conform to the W3C HTML5 specification. So for div data..
Convert js Array() to JSon object for use with JQuery .ajax http://stackoverflow.com/questions/713884/convert-js-array-to-json-object-for-use-with-jquery-ajax
|