-
Recent Posts
Ubuntu Countdown
Archives
Recent Comments
Categories
Tags
ajax apache api bandwidth bash browsers bug config custom fields data validation Developing with Netsuite Doctrine embed error firefox forms google google analytics html HTML 5 JavaScript jQuery linux netbeans netsuite Netsuite Bugs Netsuite Errors Netsuite Sucks network override PHP PHP Framework php toolkit plugin routing sample code script search security Symfony task Ubuntu web browsers xml YML
Tag Archives: html
o3ProtectedInput.js — JQuery Plugin to Protect Inputs
Today we are releasing a JQuery plugin we have written under an open source license (MIT). It is a small plugin that makes an input harder to edit. Although this may seem counter productive, it is acctually quite useful for … Continue reading
Posted in JavaScript, jQuery, Plugin, Uncategorized
Tagged firefox, forms, html, input, JavaScript, jQuery, jquery plugin, MIT, plugins, sample code, script
Leave a comment
Internet Explorer 8 and event.preventDefault() Problem
I was trying to use event.preventDefault in a function called by an onclick method of an anchor tag. Although this worked fine in Firefox and chrome, naturally, I.E. would find it necessary to treat this differently. IE 8 sadly does … Continue reading
Posted in Html, JavaScript
Tagged firefox, html, ie8, internet explorer, JavaScript, microsoft
Leave a comment
Using and Installing Greasemonkey Scripts
As a programmer, I often have need to tweak or examine little bits of a page’s HTML. Although firebug is a great tool and incredibly flexible, sometime it just doesn’t quite fit the bill. When such cases arise, greasemonkey is … Continue reading
PHP Output Buffering (with HTML)
Over the past year I have made heavy use of PHP output buffering. Although it serves no function purpose, it can make for much more readable code; I have found it particlarly useful for outputting HTML from methods. Consider the … Continue reading
Posted in Html, PHP, Uncategorized
Tagged html, netbeans, output buffering, PHP, sample code
Leave a comment
JQuery and Ajax Forms Plugin
Writing JavaScript to handle ajax form submission can be a pain. Not only is it a lot of coding, but it often means you have to write forms using different html than you would use for a normal form. This … Continue reading
Posted in JavaScript, jQuery, Plugin, Uncategorized
Tagged ajax, forms, html, sample code
Leave a comment
AjaxForm and Validation Plugins for Jquery
Two of my favorite jQuery plugins are the AjaxForm and the Validation plugins. The AjaxForm plugin allows you to very easily convert a normal html form into an ajax form while the validation plugin offers easy javascript side validation of … Continue reading
Posted in JavaScript, jQuery, Plugin
Tagged bugs, data validation, forms, html, JavaScript, jQuery, sample code
Leave a comment
HTML 5 and Required Inputs
Another promising (and partially implemented) feature of HTML 5 is required fields. Firefox 6 already lets you take advantage of this attribute. The required attribute forces users to fill out a field before allowing them to submit a form. If … Continue reading
HTML and Limiting Character in a Textarea
By adding the attribute maxlength=”23″ you can limit the field to 23 characters. The browser won’t allow the user to enter anything longer than the number you specify. For those of you with recent versions of Firefox or Chrome, you … Continue reading
Loading XML along with HTML for Your Javascripts to Use
If you have JavaScripts that rely on certain xml data in order to operate, you might be tempted to use the document body’s (or JQuery’s) onload event handler to perform an ajax request to get the xml immediately after the … Continue reading
