eECHO BLOG

A journey of a thousand miles starts with a single step.

Archive for the ‘Markup Languages’ Category

Protected: smoothgallery

There is no excerpt because this is a protected post.

INTRODUCTION TO URL ENCODING GET

Background URL Encoding is the process of converting string into valid URL format. Valid URL format means that the URL contains only what is termed “alpha | digit | safe | extra | escape” characters. You can read more about the what and the whys of these terms on the World Wide Web Consortium site: [...]

Entity Declarations, Attributes and Expansion

by Norman Walsh August 28, 1998 Entity Declarations Entities must be declared before they can be used. They may be declared in the DTD, if your XML parser processes the DTD (also known as the external subset), or the internal subset. Note: if the same entity is declared more than once, only the first declaration [...]

Protected: Insert content Textarea JavaScript

There is no excerpt because this is a protected post.

Images With A Drop jQuery

Here’s how jQuery attacks the problem. $(document).ready(function(){    $("img.dropshadow").wrap("<div class='wrap1'><div class='wrap2'>" +     "<div class='wrap3'></div></div></div>"); }); Assuming your images are formatted like so: <img src="object.gif" class="dropshadow" alt="The object casting " />

Protected: find urls in tags with class JavaScript jq

There is no excerpt because this is a protected post.

Add spans around each word

Add spans around each word then add a hover and italicize words with the letter t.     var newText = $("p").text().split(" ").join("</span> <span>");     newText = "<span>" + newText + "</span>";     $("p").html(newText)           .find("span")             .hover(function () { $(this).addClass("hilite"); },                    function () { $(this).removeClass("hilite"); })           .end()           .find(":contains('t')")             .css({"font-style":"italic", "font-weight":"bolder"});

ascii art

████████▓▓▓▓░░░░░░▓▓▓▓▓▓ ██████▓▓░░░░░░░░░░░░░░░░▓▓ ████▓▓░░░░░░░░░░░░░░░░░░░░▓▓ ██▓▓░░░░░░░░░░░░░░░░░░░░░░░░▓▓ █▓░░░░░░░░░░░░░░░░░░░░░░░░░░░▓▓ █▓░░░░░░░░░░░░░░░░░░░░░░░░░░░▓░▓ ▓░░░░░░░░░░░░░░░░█░░░░░░░░░░░░░▓ ▓░░░░░░░░░░░░░████░░░░░░░░░░░░░░▓ ▓░░░░░░░░░░░░██▒█░░░░░░░░░░░█░░░▓ ▓░░░░░░░░░░██████░░░░░░░█████░░░▓ ▓░░░░░░░░░███████░░░░░░██▒▒█░░░░▓ █▓░░░░░░░░█████▒█░░░░░██████░░░▓ █▓░░░░░░░░█▒▒▒▒▒█░░░░██████░░░▓ ██▓░░░░░░░█▒▒▒▒█░░░░████▒▒█░░▓ ███▓░░░░░░█▒▒▒█░░░░░█▒▒▒▒█░░▓ ███▓░░░░░░████░░░░░░█▒▒▒█░░▓ ████▓░░░░░░░░░░░░░░░░███░░▓ █████▓▓░░░░░░░█████░░░░░░▓ ███████▓▓▓░░░░░██░░░░░░░▓ ██████████▓▓▓░░░░░░▓▓▓▓▓ █████████▓▓░░░░░░░░░▓ ████████▓▓░░░░░░░░░░▓▓ ████████▓░░▓▓░░░░░░░░░▓ ███▓▓▓▓▓▓░▓░░░░░░░░░░░▓ █▓▓░░░▓▓▓▓░▓░░░░░░░░░░▓▓▓▓▓▓ █▓▓░░░░░░▓▓▓▓░░░░░░░▓▓░░░░░▓▓ █▓░░░░░░░░░░▓▓▓▓▓▓▓▓░░░░░░░░░▓ ██▓▓░░░░░░░░░▓███▓░░░░░░░░░░▓ ███▓▓▓▓▓▓▓▓▓▓█████▓▓▓▓▓▓▓▓▓▓

foutieve interpretatie jQuery IE

Juiste HTML voor templates template = "<div class=\"filter\" id=\"filter\"><fieldset><legend>Remove emails from queue</legend><a class=\"deletelink\" id=\"button" +        "\">REMOVE&nbsp;&nbsp;&nbsp;</a><span id=\"out" +        "\"></span></fieldset></div>";         $(template).appendTo(parent); HTML tags moeten correct afgesloten worden firefox sluit bijna alles correct af. IE zal layout breken. Iedere post moet correcte return type bevaten. $.post("/queue/reset/", { "filter": ""},                         function(data){                             dialog.dialog("close");                             [...]

Scripting Debugging in Internet Explorer

I thought I’d take a couple minutes to talk about Script Debugging and Internet Explorer. Script debugging is turned off by default you can enable it by going to: Tools->Internet Options…->Advanced->Disable Script Debugging Prior to XPSP2 the above will turn script debugging on for all applications that host the WebBrowser control (Outlook for example). On [...]