Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Remove all the cruft meta tags. jquery/2012-dev-summit#45
  • Loading branch information
RedWolves committed Oct 16, 2012
commit f3ebf9d17b4966b884c8224c836dc94e474e4ab1
1 change: 0 additions & 1 deletion page/about-jquery.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: About jQuery
filename: about-jquery-foo.html
---

Getting started with jQuery can be easy or challenging, depending on
Expand Down
3 changes: 0 additions & 3 deletions page/about-jquery/downloading-jquery.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
---
title: Downloading jQuery
status: needswork
editrequired: 2
attribution: jQuery Docs
---

## About The Code
Expand Down
3 changes: 0 additions & 3 deletions page/about-jquery/how-jquery-works.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
---
title : How jQuery Works
status: needswork
editrequired: 11
attribution: jQuery Docs
---
### jQuery: The Basics

Expand Down
3 changes: 0 additions & 3 deletions page/ajax.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
---
title: Ajax
chapter: Ajax
section : 1
attribution: jQuery Fundamentals & liamks
---

Traditionally webpages required reloading to update their content. For web-based email this meant that users had to manually reload their inbox to check and see if they had new mail. This had huge drawbacks: it was slow and it required user input. When the user reloaded their inbox, the server had to reconstruct the entire web page and resend all of the HTML, CSS, JavaScript, as well as the user's email. This was hugely inefficient. Ideally, the server should only have to send the user's new messages, not the entire page. By 2003 all the major browsers, solved this issue by adopting the XMLHttpRequest (XHR) object, allowing browsers to communicate with the server without requiring a page reload.
Expand Down
1 change: 0 additions & 1 deletion page/ajax/ajax-and-forms.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title : Ajax and Forms
attribution: jQuery Fundamentals
---

jQuery’s ajax capabilities can be especially useful when dealing with forms. There are several advantages, which can range from serialization, to simple client-side validation (e.g. "Sorry, that username is taken"), to [prefilters](http://api.jquery.com/extending-ajax/#Prefilters) (explained below), and even more!
Expand Down
1 change: 0 additions & 1 deletion page/ajax/ajax-events.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title : Ajax Events
attribution: jQuery Fundamentals
---
Often, you’ll want to perform an operation whenever an Ajax requests starts or
stops, such as showing or hiding a loading indicator. Rather than defining
Expand Down
1 change: 0 additions & 1 deletion page/ajax/ajax-excercises.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title : Exercises
attribution: jQuery Fundamentals
---
### Load External Content

Expand Down
1 change: 0 additions & 1 deletion page/ajax/jquery-ajax-methods.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title : jQuery's Ajax-Related Methods
attribution: jQuery Fundamentals
---
While jQuery does offer many Ajax-related convenience methods, the core
`$.ajax` method is at the heart of all of them, and understanding it is
Expand Down
1 change: 0 additions & 1 deletion page/ajax/key-concepts.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title : Key Concepts
attribution: jQuery Fundamentals
---
Proper use of Ajax-related jQuery methods requires understanding some key
concepts first.
Expand Down
1 change: 0 additions & 1 deletion page/ajax/working-with-jsonp.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title : Working with JSONP
attribution: jQuery Fundamentals
---
The advent of JSONP — essentially a consensual cross-site scripting hack — has
opened the door to powerful mashups of content. Many prominent sites provide
Expand Down
1 change: 0 additions & 1 deletion page/code-organization/beware-anonymous-functions.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: Beware Anonymous Functions
attribution: jQuery Fundamentals
---

Anonymous functions bound everywhere are a pain. They're difficult to debug,
Expand Down
1 change: 0 additions & 1 deletion page/code-organization/concepts.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: Code Organization Concepts
attribution: $jQuery Fundamentals
---

When you move beyond adding simple enhancements to your website with jQuery and
Expand Down
1 change: 0 additions & 1 deletion page/code-organization/dont-repeat-yourself.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: Keep Things DRY
attribution: jQuery Fundamentals
---
Don't repeat yourself; if you're repeating yourself, you're doing it wrong.

Expand Down
1 change: 0 additions & 1 deletion page/code-organization/feature-browser-detection.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: Feature & Browser Detection
attribution: Connor Montgomery & bobholt
---

### Can I Use This Browser Feature?
Expand Down
3 changes: 0 additions & 3 deletions page/effects.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
---
title: Effects
chapter : effects
section : 1
attribution: jQuery Fundamentals
---
jQuery makes it trivial to add simple effects to your page. Effects can use
the built-in settings, or provide a customized duration. You can also create
Expand Down
1 change: 0 additions & 1 deletion page/effects/built-in-effects.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title : Built-in Effects
attribution: jQuery Fundamentals
---
Frequently used effects are built into jQuery as methods:

Expand Down
1 change: 0 additions & 1 deletion page/effects/custom-effects.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title : Custom Effects with $.fn.animate
attribution: jQuery Fundamentals
---
jQuery makes it possible to animate arbitrary CSS properties via the
`$.fn.animate` method. The `$.fn.animate` method lets you animate to a set
Expand Down
1 change: 0 additions & 1 deletion page/effects/effects-exercises.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title : Effect Exercises
attribution: jQuery Fundamentals
---
### Reveal Hidden Text

Expand Down
1 change: 0 additions & 1 deletion page/effects/managing-effects.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title : Managing Effects
attribution: jQuery Fundamentals
---
## Managing Effects

Expand Down
2 changes: 0 additions & 2 deletions page/effects/queue_and_dequeue_explained.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
title: Queue & Dequeue Explained
attribution: Remy Sharp
editrequired: 2
source: http://jqueryfordesigners.com/api-queue-dequeue/
---

Expand Down
3 changes: 0 additions & 3 deletions page/effects/uses_of_queue_and_dequeue.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
---
title: The uses of jQuery .queue() and .dequeue()
attribution: Corey Frang
status: needswork
editrequired: 2
source: http://gnarf.net/2010/09/30/the-uses-of-jquery-queue-and-dequeue/
---

Expand Down
1 change: 0 additions & 1 deletion page/events.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: Events
attribution: jQuery Fundamentals
---
jQuery provides simple methods for attaching event handlers to selections.
When an event occurs, the provided function is executed. Inside the function,
Expand Down
1 change: 0 additions & 1 deletion page/events/event-delegation.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title : Increasing Performance with Event Delegation
attribution: jQuery Fundamentals
---
You'll frequently use jQuery to add new elements to the page, and when you do,
you may need to bind events to those new elements — events you already bound to
Expand Down
3 changes: 1 addition & 2 deletions page/events/event-exercises.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title : Excercises
attribution: jQuery Fundamentals
title : Exercises
---
###Create an Input Hint

Expand Down
2 changes: 0 additions & 2 deletions page/events/event-extensions.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
title : jQuery Event Extensions
attribution: Dave Methvin
github: dmethvin
---
jQuery offers several ways to extend its event system to provide custom functionality when events are attached to elements. Internally in jQuery, these extensions are primarily used to ensure that standard events such as `submit` and `change` behave consistently across browsers. However, they can also be used to define new events with custom behavior.

Expand Down
1 change: 0 additions & 1 deletion page/events/event-helpers.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title : Event Helpers
attribution: jQuery Fundamentals
---
jQuery offers two event-related helper functions that save you a few keystrokes.

Expand Down
1 change: 0 additions & 1 deletion page/events/events-to-elements.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title : Connecting Events to Elements
attribution: jQuery Fundamentals
---
jQuery offers convenience methods for most common events, and these are the
methods you will see used most often. These methods — including `$.fn.click`,
Expand Down
1 change: 0 additions & 1 deletion page/events/inside-event-handling-function.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title : Inside the Event Handling Function
attribution: jQuery Fundamentals
---
Every event handling function receives an event object, which contains many
properties and methods. The event object is most commonly used to prevent the
Expand Down
1 change: 0 additions & 1 deletion page/events/introduction-to-custom-events.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: Introducing Custom Events
attribution: $jQuery Fundamentals
---
## Custom Events

Expand Down
1 change: 0 additions & 1 deletion page/events/introduction-to-events.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: Introducing Events
attribution: $jQuery Fundamentals
---

## Introduction
Expand Down
2 changes: 0 additions & 2 deletions page/events/triggering-event-handlers.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
title : Triggering Event Handlers
attribution: jQuery Fundamentals
github: johnkpaul
level: intermediate
---
#### Triggering Events
Expand Down
3 changes: 0 additions & 3 deletions page/events/using_delegate_and_undelegate.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
---
title: Using Delegate and Undelegate in jQuery
attribution: Jordan Boesch
status: needswork
editrequired: 2
source: http://www.learningjquery.com/2010/03/using-delegate-and-undelegate-in-jquery-1-4-2
---

Expand Down
3 changes: 0 additions & 3 deletions page/events/working_with_events_part_1.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
---
title: Working with Events, part 1
attribution: Karl Swedberg
status: needswork
editrequired: 2
source: http://www.learningjquery.com/2008/03/working-with-events-part-1
---

Expand Down
3 changes: 0 additions & 3 deletions page/events/working_with_events_part_2.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
---
title: Working with Events, part 2
attribution: Karl Swedberg
status: needswork
editrequired: 3
source: http://www.learningjquery.com/2008/05/working-with-events-part-2
---
In my last article, I described the common problem of events seemingly ceasing
Expand Down
3 changes: 0 additions & 3 deletions page/faq/add_keyboard_navigation.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
---
title: Adding Keyboard Navigation
attribution: Remy Sharp
status: needswork
editrequired: 2
source: http://jqueryfordesigners.com/adding-keyboard-navigation/
---

Expand Down
2 changes: 0 additions & 2 deletions page/faq/enable_the_back_button.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
title: Enabling The Back-Button
attribution: Remy Sharp
editrequired: 2
source: http://jqueryfordesigners.com/enabling-the-back-button/
---

Expand Down
1 change: 0 additions & 1 deletion page/javascript-101.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title : JavaScript 101
attribution: jQuery Fundamentals
---

jQuery is built on top of JavaScript, a rich and expressive language in its own right. This means when using jQuery, we are still writing valid JavaScript; it just serves as a framework to make many aspects of writing JavaScript easier and more reliable in the various browser environments. With that said, a basic knowledge of JavaScript will go a long way in understanding, structuring, and debugging our code; jQuery will just help make that basic knowledge go much, much further.
Expand Down
4 changes: 0 additions & 4 deletions page/javascript-101/arrays.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
---
title: Arrays
attribution:
- jQuery Fundamentals
- Stefan Baumgartner
github: ddprrt
---
Arrays are zero-indexed, ordered lists of values. They are a handy way to store a set of
related items of the same type (such as strings), though in reality, an array
Expand Down
1 change: 0 additions & 1 deletion page/javascript-101/closures.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: Closures
attribution: jQuery Fundamentals
---

Closures are an extension of the concept of scope -- functions have access to
Expand Down
1 change: 0 additions & 1 deletion page/javascript-101/conditional-code.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: Conditional Code
attribution: jQuery Fundamentals
---
Sometimes you only want to run a block of code under certain conditions. Flow control — via if and else blocks — lets you run code only under certain conditions.

Expand Down
1 change: 0 additions & 1 deletion page/javascript-101/functions.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: Functions
attribution: jQuery Fundamentals
---

Functions contain blocks of code that need to be executed repeatedly. Functions
Expand Down
1 change: 0 additions & 1 deletion page/javascript-101/loops.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: Loops
attribution: jQuery Fundamentals
---
Loops let you run a block of code a certain number of times.

Expand Down
1 change: 0 additions & 1 deletion page/javascript-101/objects.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: Objects
attribution: jQuery Fundamentals
---
Objects contain one or more key-value pairs. The key portion can be any string.
The value portion can be any type of value: a number, a string, an array, a
Expand Down
1 change: 0 additions & 1 deletion page/javascript-101/operators.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: Operators
attribution: jQuery Fundamentals
---
Basic operators allow you to manipulate values.

Expand Down
1 change: 0 additions & 1 deletion page/javascript-101/reserved-words.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: Reserved Words
attribution: jQuery Fundamentals
---
JavaScript has a number of “reserved words,” or words that have special meaning in the language. You should avoid using these words in your code except when using them with their intended meaning.

Expand Down
2 changes: 0 additions & 2 deletions page/javascript-101/running-code.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
title: Running Code
attribution: jQuery Fundamentals
github: jquery
---

### External
Expand Down
1 change: 0 additions & 1 deletion page/javascript-101/scope.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: Scope
attribution: jQuery Fundamentals
---

"Scope" refers to the variables that are available to a piece of code at a
Expand Down
2 changes: 0 additions & 2 deletions page/javascript-101/syntax-basics.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
title: Syntax Basics
attribution: jQuery Fundamentals
github: jquery
---

### Comments
Expand Down
1 change: 0 additions & 1 deletion page/javascript-101/testing-type.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: Testing Type
attribution: jQuery Fundamentals
---

JavaScript offers a way to test the "type" of a variable. However, the result
Expand Down
1 change: 0 additions & 1 deletion page/javascript-101/this-keyword.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: The "this" Keyword
attribution: jQuery Fundamentals
---

In JavaScript, as in most object-oriented programming languages, `this` is a
Expand Down
2 changes: 0 additions & 2 deletions page/javascript-101/types.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
title: Types
attribution: jQuery Fundamentals
github: jquery
---

The types in JavaScript fall into two categories; primitives and objects. The primitive types include:
Expand Down
2 changes: 0 additions & 2 deletions page/performance/append-outside-loop.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
title: Append Outside of Loops
attribution: jQuery Fundamentals
tags: performance
---

Touching the DOM comes at a cost; if you're appending a lot of elements to the
Expand Down
Loading