Often you will see SSL warnings or errors related to insecure content being displayed on a secure page. This could be as simple as one javascript file or image that is being included via http rather than https, though some times this can be a bit tricky to track down. The easiest solution is to [...]
Archive: html
Posts Tagged ‘html’
Ever need to quickly test some HTML that you copied from some where? If you have Firebug installed, you can open a new tab, go the the HTML tab in Firebug, click edit and paste your HTML and Firefox will render it. This is faster than having to open a text editor, paste the contents [...]
If you are using jQuery and attaching click handlers etc to elements as part of your document ready block, you may find you are losing those handlers if you update the page with Javascript after load. For example if you have some kind of slide show which involves redrawing the contents of a div, you [...]
If you ever want to have a quick look at a html file from the command line (eg when SSHing into a server) then you will love this little app. Called w3m, its a basic text based browser that will render your html into readable formatted text right on the command line. This is great [...]
The web developer toolbar is an excellent addition to the great firefox web browser. It allows you ultimate control over the behaviour of your web browser and helps you to fine tune layouts. The toolbar has a real time html and css editor built in which is great for tweaking things. For those of you [...]
Javascript can seem daunting for new comers who are learning html and coding for the web. However there are a few dead easy things you can do with javascript which do not require any particularly complicated code and can make your site a bit smoother and slicker for the end user. Form Submit on Change [...]