はてなブックマークアプリ

サクサク読めて、
アプリ限定の機能も多数!

アプリで開く

はてなブックマーク

  • はてなブックマークって?
  • アプリ・拡張の紹介
  • ユーザー登録
  • ログイン
  • Hatena

はてなブックマーク

トップへ戻る

  • 総合
    • 人気
    • 新着
    • IT
    • 最新ガジェット
    • 自然科学
    • 経済・金融
    • おもしろ
    • マンガ
    • ゲーム
    • はてなブログ(総合)
  • 一般
    • 人気
    • 新着
    • 社会ニュース
    • 地域
    • 国際
    • 天気
    • グルメ
    • 映画・音楽
    • スポーツ
    • はてな匿名ダイアリー
    • はてなブログ(一般)
  • 世の中
    • 人気
    • 新着
    • 新型コロナウイルス
    • 働き方
    • 生き方
    • 地域
    • 医療・ヘルス
    • 教育
    • はてな匿名ダイアリー
    • はてなブログ(世の中)
  • 政治と経済
    • 人気
    • 新着
    • 政治
    • 経済・金融
    • 企業
    • 仕事・就職
    • マーケット
    • 国際
    • はてなブログ(政治と経済)
  • 暮らし
    • 人気
    • 新着
    • カルチャー・ライフスタイル
    • ファッション
    • 運動・エクササイズ
    • 結婚・子育て
    • 住まい
    • グルメ
    • 相続
    • はてなブログ(暮らし)
    • 掃除・整理整頓
    • 雑貨
    • 買ってよかったもの
    • 旅行
    • アウトドア
    • 趣味
  • 学び
    • 人気
    • 新着
    • 人文科学
    • 社会科学
    • 自然科学
    • 語学
    • ビジネス・経営学
    • デザイン
    • 法律
    • 本・書評
    • 将棋・囲碁
    • はてなブログ(学び)
  • テクノロジー
    • 人気
    • 新着
    • IT
    • セキュリティ技術
    • はてなブログ(テクノロジー)
    • AI・機械学習
    • プログラミング
    • エンジニア
  • おもしろ
    • 人気
    • 新着
    • まとめ
    • ネタ
    • おもしろ
    • これはすごい
    • かわいい
    • 雑学
    • 癒やし
    • はてなブログ(おもしろ)
  • エンタメ
    • 人気
    • 新着
    • スポーツ
    • 映画
    • 音楽
    • アイドル
    • 芸能
    • お笑い
    • サッカー
    • 話題の動画
    • はてなブログ(エンタメ)
  • アニメとゲーム
    • 人気
    • 新着
    • マンガ
    • Webマンガ
    • ゲーム
    • 任天堂
    • PlayStation
    • アニメ
    • バーチャルYouTuber
    • オタクカルチャー
    • はてなブログ(アニメとゲーム)
    • はてなブログ(ゲーム)
  • おすすめ

    ChatGPT

『dean.edwards.name』

  • 人気
  • 新着
  • すべて
  • /unpacker/

    3 users

    dean.edwards.name

    A JavaScript Decompressor. version 1.0 Paste: Unpack Copy: disabled This only works in browsers which have a built-in pretty-printer.

    • テクノロジー
    • 2018/09/07 10:55
    • JavaScript
    • security
    • web
    • Dean Edwards: IE7.js version 2.0 (beta)

      8 users

      dean.edwards.name

      I’ve finally updated my IE7 library. IE7 was in alpha for a long time. The last version was very stable but I always intended to issue a serious update. The release of the real IE7 browser threw me off course a little and then I got bogged down with base2. I’ve made some important changes to the script which I’ll now outline. The IE7 project is now hosted on googlecode (I got fed up with SourceFor

      • テクノロジー
      • 2008/01/07 09:41
      • IE
      • JavaScript
      • IE7
      • library
      • Dean Edwards: Sniff!

        26 users

        dean.edwards.name

        My current frog exaggerator of choice: var isMSIE = /*@cc_on!@*/false; Comments (67) Leave a comment Comment: #1 It seems to be the fastest and shortest way to know that, thank You! Comment: #2 ooops, maybe this one is even more horrible var isMSIE = /*@cc_on!@*/!1; reduced by 3 chars :rotfl: Comment: #3 […] Dean Edwards nous propose la méthode la plus courte (en terme de code )que j’ai eu l’occas

        • 暮らし
        • 2007/04/01 01:04
        • javascript
        • IE
        • Trick
        • browser
        • puzzle
        • tips
        • Internet
        • library
        • Dean Edwards: Rules For JavaScript Library Authors

          5 users

          dean.edwards.name

          I wrote this about six months ago before starting work on base2. I decided not to post it at the time as I thought it sounded a little pompous. On reflection, they aren’t bad rules and I managed to stick to them. So, here the rules I wrote for myself back in October. 1. Be unobtrusive My HTML doesn’t want to know about your JavaScript. 2. Object.prototype is verboten! This is so important that it

          • テクノロジー
          • 2007/03/24 23:25
          • JavaScript
          • library
          • programming
          • Internet
          • Dean Edwards: Yet Another JavaScript Library Without Documentation

            9 users

            dean.edwards.name

            Just what the world needs, another JavaScript library. Intro Because this library is standards-based it means that you don’t have to learn a new API. It uses standard DOM properties and methods throughout which also means that I don’t have to write any documentation. It is part of a suite of little libraries that I’m developing called base2. This is the first library under that umbrella and is cal

            • テクノロジー
            • 2007/03/22 14:24
            • javascript
            • library
            • ブラウザ
            • HTML
            • Dean Edwards: How To Subclass The JavaScript Array Object

              4 users

              dean.edwards.name

              It seems easy doesn’t it? Just do this: // create the constructor var Array2 = function() { // initialise the array }; // inherit from Array Array2.prototype = new Array; // add some sugar Array2.prototype.each = function(iterator) { // iterate }; No problemo. Well, there is one problemo. Quite a big problemo in fact. You see, every developer’s favourite browser (Internet Explorer), refuses to mai

              • テクノロジー
              • 2006/11/22 20:50
              • JavaScript
              • *あとで
              • Dean Edwards: Sandboxing JavaScript Using <iframe>

                7 users

                dean.edwards.name

                I’ve been experimenting with running code in an iframe and the results are very encouraging. Sandbox.eval() I’m currently developing a templating system in JavaScript and ran into a problem with scope. The problem is that my template scripts have access to all of the global (window) object’s properties and methods. I don’t want this. I want my template scripts to run in a separate, closed environm

                • テクノロジー
                • 2006/11/20 23:10
                • javascript
                • sandbox
                • tips
                • dev
                • development
                • /my/behaviors/

                  3 users

                  dean.edwards.name

                  To enable these behaviors on Mozilla platforms use the XBL wrapper moz-behaviors.xml. Does your browser support DHTML Behaviors? Here is a simple test. star-light.htc A DHTML Behavior that dynamically applies syntax highlighting to source listings (contained in a <pre/> tag for example). The syntax highlighter is fully configurable and modules exist for the following languages: JavaScript HTML CSS

                  • テクノロジー
                  • 2006/08/04 10:39
                  • css
                  • あとで
                  • firefox
                  • html
                  • javascript
                  • Dean Edwards: How To Load And Parse XML Data Without ActiveX

                    3 users

                    dean.edwards.name

                    A little known but cool feature of Internet Explorer is its support for XML data islands. Basically, you can embed some XML data in a page like this: <html> <head> <xml> <root>Some data</root> </xml> </head> Even cooler, you can reference an external data source: <xml src="data.xml"></xml> The classic “Ajax” way to load XML data involves a couple of ActiveX objects: var http = new ActiveXObject("M

                    • テクノロジー
                    • 2006/07/14 10:36
                    • JavaScript
                    • /packer/

                      392 users

                      dean.edwards.name

                      A JavaScript Compressor. version 3.0 Help Paste: Base62 encode Shrink variables Load Clear Pack Copy: disabled Save Decode Also available as .NET, perl and PHP applications.

                      • 暮らし
                      • 2006/07/05 12:48
                      • javascript
                      • 難読化
                      • 圧縮
                      • webサービス
                      • tool
                      • compression
                      • ツール
                      • packer
                      • compressor
                      • programming
                      • Dean Edwards: window.onload (again)

                        23 users

                        dean.edwards.name

                        This is a follow-up to my original window.onload solution. The negative points of that solution are: For Internet Explorer you need an external JavaScript file We only had genuine solutions for Internet Explorer and Mozilla/Firefox (not Safari or Opera) Now, thanks to Matthias Miller, we have a solution for Internet Explorer which does not rely on external files: // for Internet Explorer (using co

                        • テクノロジー
                        • 2006/06/21 07:36
                        • javascript
                        • onload
                        • DOMContentLoaded
                        • tips
                        • dom
                        • event
                        • Dean Edwards: Levels of JavaScript Knowledge

                          11 users

                          dean.edwards.name

                          Inspired by Roger Johansson’s Levels of HTML Knowledge: alert("Hello World"); var WORLD = "World"; function hello(who) { alert("Hello " + who); }; hello(WORLD); <button onclick="hello(WORLD)">Say Hello</button> <button id="hello">Say Hello</button> var button = document.all.hello; button.onclick = function() { hello(WORLD); }; var button = document.getElementById("hello"); button.addEventListener(

                          • テクノロジー
                          • 2006/06/03 10:37
                          • javascript
                          • 知識
                          • neta
                          • Dean Edwards: Faster DOM Queries

                            4 users

                            dean.edwards.name

                            Alex Russell, head honcho of the Dojo Foundation, suggests a hideous hack to speed up DOM queries. Why does he want to do this? He wants behavioral extensions to be applied as quickly as possible and he has a point. For a good user experience the code to support a web interface should be applied as quickly as possible. A delay can lead to an unresponsive interface, confusing the user about what wo

                            • テクノロジー
                            • 2006/04/12 02:51
                            • DOM
                            • javascript
                            • library
                            • tips
                            • dean.edwards.name

                              11 users

                              dean.edwards.name

                              Apologies. My site is down for a while. My server is having a nice rest in the meantime. Back to normal soon.

                              • テクノロジー
                              • 2006/03/27 01:59
                              • javascript
                              • プログラミング
                              • programming
                              • あとで読む
                              • Dean Edwards: A Base Class for JavaScript Inheritance

                                8 users

                                dean.edwards.name

                                NB. I’ve amended the code samples below to reflect recent changes in this class. I’m an OO programmer at heart and JavaScript supports prototype based inheritance. Unfortunatley this leads to verbose class definitions: function Animal(name) {}; Animal.prototype.eat = function() {}; Animal.prototype.say = function(message) {}; I want a nice base class for JavaScript OO: I want to easily create clas

                                • テクノロジー
                                • 2006/03/25 18:17
                                • JavaScript
                                • OOP
                                • オブジェクト指向
                                • ajax
                                • library
                                • 開発
                                • programming
                                • tips
                                • Dean Edwards: JavaScript Tip #1: Speed Up Object Detection

                                  27 users

                                  dean.edwards.name

                                  Welcome to the first of what I hope will be a regular series of JavaScript tips. Object detection is common in JavaScript. Browser irregularities mean that your code must sometimes contain branches for different browsers. Here is a simple way to speed up object detection for a leaner and meaner script. Instead of this: function addEvent(element, type, handler) { if (element.addEventListener) { ele

                                  • テクノロジー
                                  • 2005/12/08 18:59
                                  • javascript
                                  • ajax
                                  • tips
                                  • performance
                                  • /download/

                                    13 users

                                    dean.edwards.name

                                    IE7 Compliance patch for Explorer! These files are available for download from Google Code. current version: 2.0 (beta) More information cssQuery2.zip cssQuery() is a cross-platform JavaScript function that enables querying of a DOM document using CSS selectors. All CSS1, most CSS2 and some CSS3 selectors are allowed. The function returns a JavaScript array of matching elements. current version: 2

                                    • テクノロジー
                                    • 2005/11/08 17:51
                                    • packer
                                    • JavaScript
                                    • perl
                                    • プログラミング
                                    • jsmin
                                    • /my/flicker.html

                                      3 users

                                      dean.edwards.name

                                      Caching in IE This page is basically a duplication of a comment I made on mezzoblue. Introduction Whilst developing a work-around to background-attachment:fixed for IE7, I came across the horrible image flicker problem. Oh. And this is a browser problem not a server problem. Unfortunately the only way to fix it is by configuring your server. That pesky image flicker!! To clarify: only affects IE6.

                                      • テクノロジー
                                      • 2005/10/26 13:37
                                      • IE
                                      • Dean Edwards: addEvent() – My Solution

                                        6 users

                                        dean.edwards.name

                                        PPK’s addEvent() Recoding Contest produced a number of very similar solutions. The eventual winner was chosen because of its simplicity. All of the solutions relied on object detection to some degree. My solution is very different. it performs no object detection it does not use the addeventListener/attachEvent methods it keeps the correct scope (the this keyword) it passes the event object correc

                                        • テクノロジー
                                        • 2005/10/21 12:47
                                        • JavaScript
                                        • Dean Edwards: The window.onload Problem – Solved!

                                          26 users

                                          dean.edwards.name

                                          Well, when I say solved I mean solved for the two most important browsers – Internet Explorer and Mozilla/Firefox. Still that’s good enough isn’t it? First, let me define the problem. The window.onload event is used by programmers to kick-start their web applications. This could be something trivial like animating a menu or something complex like initialising a mail application. The problem is tha

                                          • テクノロジー
                                          • 2005/09/25 13:34
                                          • javascript
                                          • tips
                                          • firefox
                                          • programming
                                          • /my/cssQuery/

                                            48 users

                                            dean.edwards.name

                                            cssQuery() version 2.0.2 getElementsByTagName? Pah! Introduction cssQuery() is a powerful cross-browser JavaScript function that enables querying of a DOM document using CSS selectors. All CSS1 and CSS2 selectors are allowed plus quite a few CSS3 selectors. Usage Syntax elements = cssQuery(selector [, from]); where selector (required) is a valid CSS selector and from (optional) is a document, elem

                                            • テクノロジー
                                            • 2005/07/08 11:13
                                            • javascript
                                            • css
                                            • library
                                            • dom
                                            • ajax
                                            • HTML
                                            • programming
                                            • /IE7/overview/

                                              3 users

                                              dean.edwards.name

                                              Overview IE7 loads and parses all style sheets into a form that Explorer can understand. You can then use most CSS2/CSS3 selectors without having to resort to CSS hacks. The lightweight script is a single-line inclusion in your HTML/XML document. No alteration of your original markup is necessary. Neither do you have to alter your CSS. IE7 provides Microsoft Internet Explorer with support for W3C

                                              • テクノロジー
                                              • 2005/05/02 22:16
                                              • ie
                                              • css
                                              • ajax
                                              • browser
                                              • /IE7/

                                                30 users

                                                dean.edwards.name

                                                IE7.js is a JavaScript library to make MSIE behave like a standards-compliant browser. It fixes many CSS issues and makes transparent PNG work correctly under IE5 and IE6. This project is now hosted on google code: http://code.google.com/p/ie7-js/

                                                • テクノロジー
                                                • 2005/02/17 13:53
                                                • css
                                                • javascript
                                                • ie
                                                • IE7
                                                • library
                                                • web
                                                • WEBデザイン
                                                • design
                                                • *CSS

                                                このページはまだ
                                                ブックマークされていません

                                                このページを最初にブックマークしてみませんか?

                                                『dean.edwards.name』の新着エントリーを見る

                                                キーボードショートカット一覧

                                                j次のブックマーク

                                                k前のブックマーク

                                                lあとで読む

                                                eコメント一覧を開く

                                                oページを開く

                                                はてなブックマーク

                                                • 総合
                                                • 一般
                                                • 世の中
                                                • 政治と経済
                                                • 暮らし
                                                • 学び
                                                • テクノロジー
                                                • エンタメ
                                                • アニメとゲーム
                                                • おもしろ
                                                • アプリ・拡張機能
                                                • 開発ブログ
                                                • ヘルプ
                                                • お問い合わせ
                                                • ガイドライン
                                                • 利用規約
                                                • プライバシーポリシー
                                                • 利用者情報の外部送信について
                                                • ガイドライン
                                                • 利用規約
                                                • プライバシーポリシー
                                                • 利用者情報の外部送信について

                                                公式Twitter

                                                • 公式アカウント
                                                • ホットエントリー

                                                はてなのサービス

                                                • はてなブログ
                                                • はてなブログPro
                                                • 人力検索はてな
                                                • はてなブログ タグ
                                                • はてなニュース
                                                • ソレドコ
                                                • App Storeからダウンロード
                                                • Google Playで手に入れよう
                                                Copyright © 2005-2025 Hatena. All Rights Reserved.
                                                設定を変更しましたx