Category: JavaScript Issues

jQuery Custom Autocomplete with two columns

How to create 2 columns autocomplete.This is a little bit non w3c compilant, but it works fine:)<style>.resultBox{ float: left; width: 50%!important;}</style><input type="text" id="search-box">The ideea is to add two divs inside the results ul and render each result in the proper div$.widget( "custom.twocolumnsautocomplete", $.ui.autocomplete, { _renderMenu: … Read more »

Solve: “m.lang.contextmenu is undefined” error message

I got this error while developing a website. It was odd the problema was not already reported, but that was because of the diferent language of the visitors.The problem seems to be from the CKEditor language detection mechanism, I tried alertedalert(CKEDITOR.lang.detect( 'en' )); // the … Read more »