Bubi Base
Wordpress Themes, Wordpress snippets
Thursday, March 27, 2014
SQL Group By single character
SELECT LEFT(pcode, 2) AS pcode2 FROM addy GROUP BY pcode2
Wednesday, March 19, 2014
Removing an empty div using Jquery
$('.selector:empty').remove();
Another Way
$.expr[':'].blank = function(obj){ return obj.innerHTML.trim().length === 0; }; $('.
selector:empty
').remove();
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)