oxford_learners_dictionaries 0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: dcec5b6228467169e3d2f52b5fffd0aff63ab20e
4
+ data.tar.gz: 1d81f8988cb9e25309b13549aa16f88911e6f80d
5
+ SHA512:
6
+ metadata.gz: 73fa34fbbfe073fa3a6be88758a5be60226d9f26a9e5798451decdf631f91fbffc66d665222e47a2f9b39dd97c365c5c45994e8c65c0d84e532efe9eb5419802
7
+ data.tar.gz: 4a1460f4c6d084b31d2e57d499c6bcf1cdbd31a49d47051c49b89849ca5ad9acf5022a75fb04cfd41222ee01645999a7d9a21b8659e9d451dd68611a005b6ee8
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color --format=doc
data/.ruby-gemset ADDED
@@ -0,0 +1 @@
1
+ oxford-learners-dictionaries
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.1.3
data/.travis.yml ADDED
@@ -0,0 +1,8 @@
1
+ language: ruby
2
+ before_install:
3
+ - gem install bundler -v '~> 1.5'
4
+ rvm:
5
+ - 1.9.3
6
+ - 2.0.0
7
+ - 2.1.1
8
+ - jruby-19mode
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in oxford-learners-dictionaries.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Felipe Pelizaro Gentil
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,95 @@
1
+ OxfordLearnersDictionaries Parser
2
+ =================================
3
+ [![Code Climate](https://codeclimate.com/github/fpgentil/oxford_learners_dictionaries/badges/gpa.svg)](https://codeclimate.com/github/fpgentil/oxford_learners_dictionaries)
4
+ [![Build Status](https://travis-ci.org/fpgentil/oxford_learners_dictionaries.svg?branch=master)](https://travis-ci.org/fpgentil/oxford_learners_dictionaries)
5
+
6
+ Parser for Oxford Learners Dictionary.
7
+
8
+ It parses http://www.oxfordlearnersdictionaries.com/ and return the definition(s) of the word you're looking up
9
+
10
+ ## Features
11
+
12
+ #### v0.1
13
+ Classification (verb, noun, adverb, etc) and its definition(s) and word of the day
14
+
15
+ #### v0.2
16
+ ###### WIP
17
+ Definitions including example(s) and Recent Popular searches.
18
+
19
+ #### v0.3
20
+ ###### TODO
21
+ Including picture and pronunciation (American(NAmE) and British(BrE)).
22
+
23
+ #### v0.4
24
+ ###### TODO
25
+ Usage, e.g. when looking for 'car', it'll also provide information about 'having a car', 'driving a car', etc.
26
+
27
+ #### Further version
28
+ Please let me know :)
29
+
30
+ ## Installation
31
+
32
+ Add this line to your application's Gemfile:
33
+
34
+ ```ruby
35
+ # gem 'oxford_learners_dictionaries'
36
+ # PS. not available through rubygems yet
37
+
38
+ Clone it!
39
+ ```
40
+
41
+ And then execute:
42
+
43
+ $ bundle
44
+
45
+ ## Usage
46
+
47
+ #### Example 1
48
+ ```
49
+ # Creates object
50
+ word = OxfordLearnersDictionaries::English.new("car")
51
+
52
+ # Goes to the dictionary and parse its data
53
+ word.look_up
54
+ ```
55
+
56
+ ```
57
+ word.definition
58
+ => {
59
+ :definition_0 => "a road vehicle with an engine and four wheels that can carry a small number of passengers",
60
+ :definition_1 => "a separate section of a train",
61
+ :definition_2 => "a coach/car on a train of a particular type"
62
+ }
63
+ ```
64
+
65
+ #### Example 2
66
+ ```
67
+ # Gets word of the day and short definition
68
+ word_of_the_day = OxfordLearnersDictionaries::WordOfTheDay.new
69
+ ```
70
+
71
+ ```word_of_the_day.word
72
+ => "pragmatic"
73
+ ```
74
+
75
+ ```word_of_the_day.short_definition
76
+ => "solving problems in a practical…"
77
+ ```
78
+
79
+ ```
80
+ # Get the full definition
81
+ word_of_the_day.look_up
82
+ ```
83
+
84
+ ```word_of_the_day.english.definition
85
+ => {:definition_0=>"solving problems in a practical and sensible way rather than by having fixed ideas or theories"}
86
+ ```
87
+
88
+
89
+ ## Contributing
90
+
91
+ 1. Fork it ( https://github.com/[my-github-username]/oxford_learners_dictionaries/fork )
92
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
93
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
94
+ 4. Push to the branch (`git push origin my-new-feature`)
95
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,15 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ desc "Default task"
4
+ task default: :spec
5
+
6
+ desc "Open an irb session preloaded with this library"
7
+ task :console do
8
+ sh "irb -rubygems -I lib -r english.rb"
9
+ end
10
+
11
+ desc "Run specs"
12
+ task :spec do
13
+ system "rspec ."
14
+ end
15
+
@@ -0,0 +1,5 @@
1
+ require 'oxford_learners_dictionaries/english'
2
+ require 'oxford_learners_dictionaries/word_of_the_day'
3
+
4
+ module OxfordLearnersDictionaries
5
+ end
@@ -0,0 +1,70 @@
1
+ require 'nokogiri'
2
+ require 'open-uri'
3
+
4
+ module OxfordLearnersDictionaries
5
+ class English
6
+ attr_reader :definition, :type, :url, :word
7
+
8
+ def initialize word
9
+ @word = word
10
+ @url = "http://www.oxfordlearnersdictionaries.com/definition/english/#{word}"
11
+ @definition = Hash.new
12
+ @type = nil
13
+ end
14
+
15
+ def look_up
16
+ @page = Nokogiri::HTML(open(@url))
17
+ parse
18
+ end
19
+
20
+ private
21
+ def parse
22
+ parse_type
23
+ unless parse_unique_definition
24
+ separators = [".sd-d", ".sd-g", ".d"]
25
+ separators.each do |separator|
26
+ if @page.css(separator).count > 1
27
+ parse_multiple_definitions separator
28
+ return self
29
+ end
30
+ end
31
+ end
32
+ self
33
+ end
34
+
35
+ def parse_type
36
+ @type = @page.css('.pos').first.text
37
+ end
38
+
39
+ def parse_unique_definition
40
+ if @page.css(".h-g").css(".n-g").to_s.empty? && @page.css(".n-g").count < 1
41
+ @definition[:definition_0] = @page.css(".d").text
42
+ end
43
+ !@definition.empty?
44
+ end
45
+
46
+ def parse_multiple_definitions separator
47
+ if separator == ".sd-d" || separator == ".d"
48
+ @page.css(separator).each_with_index do |definition, index|
49
+ @definition["definition_#{index}".to_sym] = if definition.text.empty?
50
+ definition.css(".d").text
51
+ else
52
+ definition.text
53
+ end
54
+ end
55
+ else
56
+ index = 0
57
+ @page.css(separator).each do |external_node|
58
+ external_node.css(".n-g").each do |definition|
59
+ @definition["definition_#{index}".to_sym] = definition.css(".d").text
60
+ index += 1
61
+ end
62
+ end
63
+ end
64
+ end
65
+ end
66
+ end
67
+
68
+ # definition.css(".x-g").each do |examples|
69
+ # puts "# #{examples.css(".x").text}"
70
+ # end
@@ -0,0 +1,5 @@
1
+ require "oxford/learners/dictionaries/version"
2
+
3
+ module OxfordLearnersDictionaries
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module OxfordLearnersDictionaries
2
+ VERSION = "0.1"
3
+ end
@@ -0,0 +1,33 @@
1
+ require 'nokogiri'
2
+ require 'open-uri'
3
+
4
+ module OxfordLearnersDictionaries
5
+ class WordOfTheDay
6
+ attr_reader :word, :short_definition, :english
7
+
8
+ URL = "http://www.oxfordlearnersdictionaries.com"
9
+
10
+ def initialize
11
+ parse
12
+ end
13
+
14
+ def look_up
15
+ @english = English.new(word).look_up if word
16
+ end
17
+
18
+ private
19
+ def parse
20
+ @wotd = Nokogiri::HTML(open(URL)).at("#daybox")
21
+ @word = parse_word
22
+ @short_definition = parse_short_definition
23
+ end
24
+
25
+ def parse_word
26
+ @wotd.css(".h").text unless @wotd.nil?
27
+ end
28
+
29
+ def parse_short_definition
30
+ @wotd.css(".d").text unless @wotd.nil?
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,29 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'oxford_learners_dictionaries/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "oxford_learners_dictionaries"
8
+ spec.version = OxfordLearnersDictionaries::VERSION
9
+ spec.authors = ["Felipe Pelizaro Gentil"]
10
+ spec.email = ["cdigentil@gmail.com"]
11
+ spec.summary = %q{Oxford Learner's Dictionaries API}
12
+ spec.description = %q{Implementation of a Oxford Learner's Dictionaries API,
13
+ it parses the website and formats the meaning of the word}
14
+ spec.homepage = ""
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0")
18
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
19
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.7"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "simplecov", "~> 0.9.0"
25
+ spec.add_development_dependency "rspec", "~> 3.0.0"
26
+ spec.add_development_dependency "webmock", "~> 1.19"
27
+
28
+ spec.add_dependency "nokogiri", "~> 1.6.3"
29
+ end
@@ -0,0 +1,482 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3
+ <head>
4
+ <title>car - Definition and pronunciation | Oxford Advanced Learner&apos;s Dictionary at OxfordLearnersDictionaries.com</title>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6
+ <meta name="description" content="car - Clear definition, audio pronunciation, synonyms and related words, real example sentences, grammar, usage notes and more in Oxford Advanced Learner&apos;s Dictionary at OxfordLearnersDictionaries.com - a free online dictionary. Look it up now!" />
7
+ <meta name="keywords" content="car, online dictionary, Oxford Advanced Learner&apos;s Dictionary, car definition, define car, definition of car, car pronunciation, pronounce car, car meaning, car examples, car example sentences, car synonyms. car Oxford Advanced Learner&apos;s Dictionary grammar" />
8
+
9
+ <link rel="alternate" hreflang="en" href="http://www.oxfordlearnersdictionaries.com/definition/english/car"/>
10
+ <link rel="alternate" hreflang="en-US" href="http://www.oxfordlearnersdictionaries.com/us/definition/english/car"/>
11
+ <link rel="alternate" hreflang="en-MX" href="http://www.oxfordlearnersdictionaries.com/us/definition/english/car"/>
12
+ <link rel="alternate" hreflang="en-PH" href="http://www.oxfordlearnersdictionaries.com/us/definition/english/car"/>
13
+ <link rel="alternate" hreflang="en-BR" href="http://www.oxfordlearnersdictionaries.com/us/definition/english/car"/>
14
+ <link rel="alternate" hreflang="en-CO" href="http://www.oxfordlearnersdictionaries.com/us/definition/english/car"/>
15
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" />
16
+ <meta name='viewport' content='width=device-width, initial-scale=1'>
17
+ <link href="http://www.oxfordlearnersdictionaries.com/external/styles/interface.css?version=1.1.28" rel="stylesheet" type="text/css" />
18
+ <link href="http://www.oxfordlearnersdictionaries.com/external/styles/responsive3columns.css?version=1.1.28" rel="stylesheet" type="text/css" />
19
+ <link href="http://www.oxfordlearnersdictionaries.com/external/styles/oxford.css?version=1.1.28" rel="stylesheet" type="text/css" />
20
+ <link href="http://www.oxfordlearnersdictionaries.com/external/styles/jquery.lightbox-0.5.css?version=1.1.28" rel="stylesheet" type="text/css" />
21
+ <link href="http://www.oxfordlearnersdictionaries.com/external/styles/print.css?version=1.1.28" rel="stylesheet" type="text/css" media="print" />
22
+ <script language="javascript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/navigation_menu.js?version=1.1.28"></script>
23
+ <script type='text/javascript'>
24
+ var googletag = googletag || {};
25
+ googletag.cmd = googletag.cmd || [];
26
+ (function() {
27
+ var gads = document.createElement('script');
28
+ gads.async = true;
29
+ gads.type = 'text/javascript';
30
+ var useSSL = 'https:' == document.location.protocol;
31
+ gads.src = (useSSL ? 'https:' : 'http:') +'//www.googletagservices.com/tag/js/gpt.js';
32
+ var node = document.getElementsByTagName('script')[0];
33
+ node.parentNode.insertBefore(gads, node);
34
+ })();
35
+
36
+ googletag.cmd.push(function() {
37
+ var smartphone = false;
38
+ var tablet = false;
39
+ var hd = false;
40
+ try{
41
+ var smartphone = window.matchMedia("(max-width: 761px)").matches;
42
+ var tablet = window.matchMedia("(min-width: 762px) and (max-width: 928px)").matches;
43
+ var hd = window.matchMedia("(min-width: 1220px)").matches;
44
+ }catch(err){}
45
+ var desktop = (!smartphone && !tablet && !hd);
46
+ if (smartphone && false || tablet && true || desktop && true || hd && true)
47
+ googletag.defineSlot('/70903302/Entry_728x90', [728, 90], 'dfp_ad_Entry_728x90').addService(googletag.pubads());
48
+ if (smartphone && false || tablet && true || desktop && true || hd && true)
49
+ googletag.defineSlot('/70903302/Entry_160x600', [160, 600], 'dfp_ad_Entry_160x600').addService(googletag.pubads());
50
+ if (smartphone && true || tablet && true || desktop && true || hd && true)
51
+ googletag.defineSlot('/70903302/Entry_180x150', [180, 150], 'dfp_ad_Entry_180x150').addService(googletag.pubads());
52
+ if (smartphone && true || tablet && false || desktop && false || hd && false)
53
+ googletag.defineSlot('/70903302/Entry_320x50', [320, 50], 'dfp_ad_Entry_320x50').addService(googletag.pubads());
54
+ if (smartphone && true || tablet && false || desktop && false || hd && false)
55
+ googletag.defineSlot('/70903302/Entry_300x250', [300, 250], 'dfp_ad_Entry_300x250').addService(googletag.pubads());
56
+ if (smartphone && false || tablet && true || desktop && true || hd && true)
57
+ googletag.defineSlot('/70903302/Entry_Btm_300x250', [300, 250], 'dfp_ad_Entry_Btm_300x250').addService(googletag.pubads());
58
+ googletag.pubads().enableSingleRequest();
59
+ googletag.enableServices();
60
+ });
61
+ </script>
62
+ <!--[if gte IE 7 ]>
63
+ <link href="http://www.oxfordlearnersdictionaries.com/external/styles/oxford-ie.css?version=1.1.28" rel="stylesheet" type="text/css" />
64
+ <![endif]-->
65
+ <!--[if IE 9]><script type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/matchMedia.js?version=1.1.28"></script><![endif]-->
66
+ <link rel="icon" type="image/x-icon" href="http://www.oxfordlearnersdictionaries.com/external/images/favicon.ico?version=1.1.28"/>
67
+ </head>
68
+ <body>
69
+ <noscript>
70
+ <div id="cookieLaw">We use cookies to enhance your experience on our website. By continuing to use our website, you are agreeing to our use of cookies. You can change your cookie settings at any time. <a href='http://global.oup.com/cookiepolicy/?siteid=oaadonline' target='_blank'>Find out more</a></div>
71
+ </noscript>
72
+ <div id="ox-container">
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+ <div id="ox-header">
100
+ <div class="responsive_row top">
101
+ <div class="nav" style="float:left;">
102
+ <a href="http://www.oxfordlearnersdictionaries.com/">Home</a>
103
+ </div>
104
+ <div class="nav">
105
+ <div class="menu responsive_hide_on_smartphone">
106
+ <ul>
107
+ <li></li>
108
+ <li><a href="http://www.oxfordlearnersdictionaries.com/wordlist/">Wordlists</a></li>
109
+ <li><a href="http://www.oxfordlearnersdictionaries.com/about/">About</a></li>
110
+ </ul>
111
+ </div>
112
+ <div class="responsive_display_on_smartphone">
113
+ <a id="toggleMenu" class="toggleMenuBg" href="#" onclick="displayMenu('navMenu')">
114
+ </a>
115
+ </div>
116
+ </div>
117
+ </div>
118
+ <nav id="navMenu" style="display:none;">
119
+ <div class="navMenuLeft"><div class="navMenuContainer"><a href="http://www.oxfordlearnersdictionaries.com/wordlist/"><b>Wordlists</b></a></div></div>
120
+ <div class="navMenuRight"><div class="navMenuContainer"><a href="http://www.oxfordlearnersdictionaries.com/about/"><b>About</b></a></div></div>
121
+
122
+
123
+ </nav>
124
+ </div>
125
+ <div class="responsive_container">
126
+ <div class="responsive_row"><div class="old-logo-title"></div></div>
127
+ <div class="responsive_mainsearch_center">
128
+ <div class="mainsearch responsive_row">
129
+ <form id="search-form" method="get" action="http://www.oxfordlearnersdictionaries.com/search/english/direct/" onsubmit="return checkSearch('Type here');">
130
+ <div class="dictionarySelector"> <select id="dictionary-selector">
131
+ <option value="english" selected="selected">English</option>
132
+ <option value="american_english" >American English</option>
133
+ </select>
134
+ </div>
135
+ <input type="text" id="q" name="q"
136
+ value="Type here" class="searchfield"
137
+ onfocus="this.value=(this.value=='Type here') ? changeText('', this) : this.value;"
138
+ onblur="this.value=(this.value=='') ? changeText('Type here', this) : this.value;" />
139
+ <input type="submit" id="search-btn" value="" />
140
+ </form>
141
+ </div>
142
+ </div>
143
+ <div class="responsive_row" id="leaderboardOthers">
144
+
145
+
146
+ <div class='responsive_align_left_on_smartphone responsive_hide_on_tablet responsive_hide_on_desktop responsive_hide_on_hd'>
147
+ <div id='dfp_ad_Entry_320x50' style='width:320px; height:50px;'>
148
+ <script type='text/javascript'>
149
+ var smartphone = false;
150
+ var tablet = false;
151
+ var hd = false;
152
+ try{
153
+ var smartphone = window.matchMedia("(max-width: 761px)").matches;
154
+ var tablet = window.matchMedia("(min-width: 762px) and (max-width: 928px)").matches;
155
+ var hd = window.matchMedia("(min-width: 1220px)").matches;
156
+ }catch(err){}
157
+ var desktop = (!smartphone && !tablet && !hd);
158
+ if (smartphone && true || tablet && false || desktop && false || hd && false)
159
+ googletag.cmd.push(function() {googletag.display('dfp_ad_Entry_320x50'); });
160
+ </script>
161
+ </div>
162
+
163
+ </div>
164
+ </div>
165
+ <div class="responsive_row">
166
+ <div class="responsive_cell_left">
167
+
168
+
169
+ <div class=' responsive_hide_on_smartphone'>
170
+ <div id='dfp_ad_Entry_160x600' style='width:160px; height:600px;'>
171
+ <script type='text/javascript'>
172
+ var smartphone = false;
173
+ var tablet = false;
174
+ var hd = false;
175
+ try{
176
+ var smartphone = window.matchMedia("(max-width: 761px)").matches;
177
+ var tablet = window.matchMedia("(min-width: 762px) and (max-width: 928px)").matches;
178
+ var hd = window.matchMedia("(min-width: 1220px)").matches;
179
+ }catch(err){}
180
+ var desktop = (!smartphone && !tablet && !hd);
181
+ if (smartphone && false || tablet && true || desktop && true || hd && true)
182
+ googletag.cmd.push(function() {googletag.display('dfp_ad_Entry_160x600'); });
183
+ </script>
184
+ </div>
185
+
186
+ </div>
187
+ </div>
188
+
189
+ <div class="responsive_cell_center">
190
+ <div class="responsive_row" id="leaderboardHD">
191
+ </div>
192
+ <div id="ox-wrapper">
193
+ <div id="main_column" class="responsive_row">
194
+ <div id="main-container" class="main-container">
195
+
196
+
197
+
198
+
199
+
200
+
201
+
202
+
203
+
204
+
205
+
206
+
207
+
208
+
209
+
210
+
211
+
212
+
213
+
214
+
215
+
216
+
217
+
218
+
219
+
220
+ <script language="javascript" type="text/javascript">
221
+ var contextId=null;
222
+ // global variable that contains the path to external files
223
+ // and used by the lighbox script
224
+ var lightboxImageLoading = "http://www.oxfordlearnersdictionaries.com/external/images/lightbox-ico-loading.gif?version=1.1.28";
225
+ var lightboxImageBtnPrev = "http://www.oxfordlearnersdictionaries.com/external/images/lightbox-btn-prev.gif?version=1.1.28";
226
+ var lightboxImageBtnNext = "http://www.oxfordlearnersdictionaries.com/external/images/lightbox-btn-next.gif?version=1.1.28";
227
+ var lightboxImageBtnClose = "http://www.oxfordlearnersdictionaries.com/external/images/lightbox-btn-close.gif?version=1.1.28";
228
+ var lightboxImageBlank = "http://www.oxfordlearnersdictionaries.com/external/images/lightbox-blank.gif?version=1.1.28";
229
+ </script>
230
+ <div>
231
+ <div class="share-this-entry">
232
+ <span id="plusone-box"><g:plusone size="normal" href="http://www.oxfordlearnersdictionaries.com/definition/english/car" count="false"></g:plusone></span>
233
+ <a href="http://www.facebook.com/sharer.php?u=http://www.oxfordlearnersdictionaries.com/definition/english/car&t=car - Definition and pronunciation | Oxford Advanced Learner&apos;s Dictionary at OxfordLearnersDictionaries.com" target="_blank" class="facebook-btn" alt="share this entry on Facebook" title="share this entry on Facebook" onclick="_gaq.push(['_trackEvent', 'share_this_entry', 'facebook', 'http://www.oxfordlearnersdictionaries.com/definition/english/car', null, true]);"></a>
234
+ <a href="http://twitter.com/home?status=Add+This:+http://www.oxfordlearnersdictionaries.com/definition/english/car" target="_blank" class="twitter-btn" alt="tweet this entry" title="tweet this entry" onclick="_gaq.push(['_trackEvent', 'share_this_entry', 'twitter', 'http://www.oxfordlearnersdictionaries.com/definition/english/car', null, true]);"></a>
235
+ <a href="http://www.stumbleupon.com/submit?url=http://www.oxfordlearnersdictionaries.com/definition/english/car" target="_blank" class="stumbleupon-btn" alt="share this entry on StumbleUpon" title="share this entry on StumbleUpon" onclick="_gaq.push(['_trackEvent', 'share_this_entry', 'stumbleupon', 'http://www.oxfordlearnersdictionaries.com/definition/english/car', null, true]);"></a>
236
+ <a href="http://www.diigo.com/post?url=http://www.oxfordlearnersdictionaries.com/definition/english/car" target="_blank" class="diigo-btn" alt="share this entry on Diigo" title="share this entry on Diigo" onclick="_gaq.push(['_trackEvent', 'share_this_entry', 'diigo', 'http://www.oxfordlearnersdictionaries.com/definition/english/car', null, true]);"></a>
237
+ <a href="mailto:?subject=car - Definition and pronunciation | Oxford Advanced Learner&apos;s Dictionary at OxfordLearnersDictionaries.com&body=http://www.oxfordlearnersdictionaries.com/definition/english/car" alt="email this entry" title="email this entry" class="email-btn"></a>
238
+ </div>
239
+ </div>
240
+ <div>
241
+ <h1 class="definition-title">Definition of <em>car noun</em> from the Oxford Advanced Learner&apos;s Dictionary</h1>
242
+ </div>
243
+ <div id="entryContent"><div xmlns="http://www.w3.org/1999/xhtml" class="entry" id="car" random="y"><div class="h-g" id="car__1"><div class="top-container"><div class="top-g" id="car__2"><span class="block-g" id="car__10"><span class="z"> </span><div id="ox-enlarge"><a class="topic" title="picture of a dashboard" href="http://www.oxfordlearnersdictionaries.com/media/english/fullsize/c/car/car_d/car_dashboard_comp.jpg"><img class="thumb" border="1" alt="picture of a dashboard" title="picture of a dashboard" src="http://www.oxfordlearnersdictionaries.com/media/english/thumb/d/das/dashb/dashboard.jpg"/><div style="clear:both; font-size:0;line-height: 0px;"><!-- End of DIV --></div><img border="1" alt="" title="" class="enlarge-icon" src="http://www.oxfordlearnersdictionaries.com/external/images/documents/bt-enlarge.gif?version=1.1.28"/></a><!-- End of DIV --></div></span><div class="core_block"><div class="webtop-g"><span class="z"> </span>
244
+ <a href="http://www.oxfordlearnersdictionaries.com/wordlist/english/oxford3000/"><img src="http://www.oxfordlearnersdictionaries.com/external/images/coresym.gif?version=1.1.28" border="0" title="Oxford3000" alt="Oxford3000" class="icon over"/></a><h2 class="h"><span class="z_core_h">car</span></h2><span class="z"> </span><span class="pos">noun</span><!-- End of DIV webtop-g--></div><!-- End of DIV core_block--></div><div class="ei-g" id="car__7"><span class="z"> </span><span class="i" id="car__8">kɑː(r)</span> <div class="sound audio_play_button pron-uk icon-audio" data-src-mp3="http://www.oxfordlearnersdictionaries.com/media/english/uk_pron/c/car/car__/car__gb_1.mp3" data-src-ogg="http://www.oxfordlearnersdictionaries.com/media/english/uk_pron_ogg/c/car/car__/car__gb_1.ogg" title=" pronunciation English" style="cursor: pointer" valign="top"> <!-- End of DIV sound audio_play_button pron-uk icon-audio--></div><span class="z">; </span><span class="y" id="car__9">kɑːr</span> <div class="sound audio_play_button pron-us icon-audio" data-src-mp3="http://www.oxfordlearnersdictionaries.com/media/english/us_pron/c/car/car__/car__us_1.mp3" data-src-ogg="http://www.oxfordlearnersdictionaries.com/media/english/us_pron_ogg/c/car/car__/car__us_1.ogg" title=" pronunciation American" style="cursor: pointer" valign="top"> <!-- End of DIV sound audio_play_button pron-us icon-audio--></div><span class="z"> </span><!-- End of DIV ei-g--></div><!-- End of DIV top-g--></div><div class="clear"> <!-- End of DIV clear--></div><!-- End of DIV top-container--></div><span class="n-g" id="car__11" cefr="a1"><img src="http://www.oxfordlearnersdictionaries.com/external/images/coresym2.gif?version=1.1.28" title="" alt="" class="icon"/><span class="z_n">1</span><span class="z"> </span><span class="vs-g" id="car__12"><span class="z"> (</span><span class="z_g"><span class="z_g_er">also</span> British English</span><span class="z"> </span><span class="z_r">formal</span><span class="z"> </span><span class="v"><strong>motor car</strong></span><span class="z">)</span></span><span class="vs-g" id="car__16"><span class="z"> (</span><span class="z_g">North American English <span class="z_g_er">also</span></span><span class="z"> </span><span class="v"><strong>automobile</strong></span><span class="z">)</span></span><span class="z"> </span><span class="d" id="car__19">a road vehicle with an engine and four wheels that can carry a small number of passengers</span><span class="x-g"><span class="x" id="car__20">Paula got into the car and drove off.</span></span><span class="x-g"><span class="x" id="car__21">‘How did you come?’ ‘ <span class="cl"><strong>By car</strong></span>.’</span></span><span class="x-g"><span class="x" id="car__23">Are you going <span class="cl"><strong>in the car</strong></span>?</span></span><span class="x-g"><span class="x" id="car__25">a <span class="cl"><strong>car driver/manufacturer/dealer</strong></span></span></span><span class="x-g"><span class="x" id="car__27">a <span class="cl"><strong>car accident/crash</strong></span></span></span><span class="x-g"><span class="x" id="car__29">Where can I park the car?</span></span><span class="z"> </span><span class="xr-g" id="car__30"><span class="xr" id="car__31"><span class="z_xr"> see also </span><a class="Ref" href="http://www.oxfordlearnersdictionaries.com/definition/english/company-car" title="company car definition"><span class="xh" id="car__32">company car</span></a></span></span></span><span class="n-g" id="car__33"><img src="http://www.oxfordlearnersdictionaries.com/external/images/coresym2.gif?version=1.1.28" title="" alt="" class="icon"/><span class="z_n">2</span><span class="z"> </span><span class="vs-g" id="car__34"><span class="z"> (</span><span class="z_vs-g">also</span><span class="z"> </span><span class="v"><strong>railcar</strong></span><span class="z"> </span><span class="z_g"><span class="z_g_er">both</span> North American English</span><span class="z">)</span></span><span class="z"> </span><span class="d" id="car__37">a separate section of a train</span><span class="x-g"><span class="x" id="car__38">Several cars went off the rails.</span></span></span><span class="n-g" id="car__39"><span class="z_n">3</span><span class="z"> </span><span class="z">(</span><span class="z_g">British English</span><span class="z">) (</span><span class="u" id="car__41">in compounds</span><span class="z">) </span><span class="d" id="car__42">a coach/<span class="dh" id="car__43">car</span> on a train of a particular type</span><span class="x-g"><span class="x" id="car__44">a <span class="cl"><strong>sleeping/dining car</strong></span></span></span></span><!-- End of DIV h-g--></div><span class="unbox" id="car__47" type="colloc"><span class="title"><a href="http://www.oxfordlearnersdictionaries.com/wordlist/english/usage_notes/unbox_colloc/"><img border="0" alt="Usage note" class="icon over" src="http://www.oxfordlearnersdictionaries.com/external/images/mid-usage.gif?version=1.1.28" title="Usage note"/></a><strong class="usage_note_header">Usage note:</strong> Driving</span><span class="collsubhead" id="car__49">Having a car</span><span class="para"><span class="eb" id="car__50">have/own/</span>(<span class="ungi" id="car__51">British English</span>) <span class="eb" id="car__52">run</span> a car</span><span class="para"><span class="eb" id="car__53">ride</span> a motorcycle/motorbike</span><span class="para"><span class="eb" id="car__54">drive/prefer/use</span> an automatic/a manual/(<span class="ungi" id="car__55">North American English, informal</span>) a stick shift</span><span class="para"><span class="eb" id="car__56">have/get</span> your car <span class="eb" id="car__57">serviced/fixed/repaired</span></span><span class="para"><span class="eb" id="car__58">buy/sell</span> a used car/(<span class="ungi" id="car__59">especially British English</span>) a second-hand car</span><span class="para"><span class="eb" id="car__60">take/pass/fail</span> a (<span class="ungi" id="car__61">British English</span>) driving test/(<span class="ungi" id="car__62">both North American English</span>) driver's test/road test</span><span class="para"><span class="eb" id="car__63">get/obtain/have/lose/carry</span> a/your (<span class="ungi" id="car__64">British English</span>) driving licence/(<span class="ungi" id="car__65">North American English</span>) driver's license</span><span class="collsubhead" id="car__66">Driving</span><span class="para"><span class="eb" id="car__67">put on/fasten/</span>(<span class="ungi" id="car__68">North American English</span>) <span class="eb" id="car__69">buckle/wear/undo</span> your seat belt/safety belt</span><span class="para"><span class="eb" id="car__70">put/turn/leave</span> the key in the ignition</span><span class="para"><span class="eb" id="car__71">start</span> the car/engine</span><span class="para">(<span class="ungi" id="car__72">British English</span>) <span class="eb" id="car__73">change/</span>(<span class="ungi" id="car__74">North American English</span>) <span class="eb" id="car__75">shift/put something into</span> gear</span><span class="para"><span class="eb" id="car__76">press/put your foot on</span> the brake pedal/clutch/accelerator</span><span class="para"><span class="eb" id="car__77">release</span> the clutch/(<span class="ungi" id="car__78">especially British English</span>) the handbrake/(<span class="ungi" id="car__79">both North American English</span>) the emergency brake/the parking brake</span><span class="para"><span class="eb" id="car__80">drive/park/reverse</span> the car</span><span class="para">(<span class="ungi" id="car__81">British English</span>) <span class="eb" id="car__82">indicate</span> left/right</span><span class="para">(<span class="ungi" id="car__83">especially North American English</span>) <span class="eb" id="car__84">signal</span> that you are turning left/right</span><span class="para"><span class="eb" id="car__85">take/miss</span> (<span class="ungi" id="car__86">British English</span>) the turning/(<span class="ungi" id="car__87">especially North American English</span>) the turn</span><span class="para"><span class="eb" id="car__88">apply/hit/slam on</span> the brake(s)</span><span class="para"><span class="eb" id="car__89">beep/honk/</span>(<span class="ungi" id="car__90">especially British English</span>) <span class="eb" id="car__91">toot/</span>(<span class="ungi" id="car__92">British English</span>) <span class="eb" id="car__93">sound</span> your horn</span><span class="collsubhead" id="car__94">Problems and accidents</span><span class="para">a car <span class="eb" id="car__95">skids/crashes (into something)/collides (with something)</span></span><span class="para"><span class="eb" id="car__96">swerve to avoid</span> an oncoming car/a pedestrian</span><span class="para"><span class="eb" id="car__97">crash/lose control of</span> the car</span><span class="para"><span class="eb" id="car__98">have/be in/be killed in/survive</span> a car crash/a car accident/(<span class="ungi" id="car__99">North American English</span>) a car wreck/a hit-and-run</span><span class="para"><span class="eb" id="car__100">be run over/knocked down by</span> a car/bus/truck</span><span class="para"><span class="eb" id="car__101">dent/hit</span> (<span class="ungi" id="car__102">British English</span>) the bonnet/(<span class="ungi" id="car__103">North American English</span>) the hood</span><span class="para"><span class="eb" id="car__104">break/crack/shatter</span> (<span class="ungi" id="car__105">British English</span>) the windscreen/(<span class="ungi" id="car__106">North American English</span>) the windshield</span><span class="para"><span class="eb" id="car__107">blow/</span>(<span class="ungi" id="car__108">especially British English</span>) <span class="eb" id="car__109">burst/puncture</span> (<span class="ungi" id="car__110">British English</span>) a tyre/(<span class="ungi" id="car__111">North American English</span>) a tire</span><span class="para"><span class="eb" id="car__112">get/have</span> (<span class="ungi" id="car__113">British English</span>) a flat tyre/a flat tire/a puncture</span><span class="para"><span class="eb" id="car__114">inflate/change/fit/replace/check</span> a tyre/tire</span><span class="collsubhead" id="car__115">Traffic and driving regulations</span><span class="para"><span class="eb" id="car__116">be caught in/get stuck in/sit in</span> a traffic jam</span><span class="para"><span class="eb" id="car__117">cause</span> congestion/tailbacks/traffic jams/gridlock</span><span class="para"><span class="eb" id="car__118">experience/face</span> lengthy delays</span><span class="para"><span class="eb" id="car__119">beat/avoid</span> the traffic/the rush hour</span><span class="para"><span class="eb" id="car__120">break/observe/</span>(<span class="ungi" id="car__121">North American English</span>) <span class="eb" id="car__122">drive</span> the speed limit</span><span class="para"><span class="eb" id="car__123">be caught on</span> (<span class="ungi" id="car__124">British English</span>) a speed camera</span><span class="para"><span class="eb" id="car__125">stop somebody for/pull somebody over for/</span>(<span class="ungi" id="car__126">British English, informal</span>) <span class="eb" id="car__127">be done for</span> speeding</span><span class="para">(<span class="ungi" id="car__128">both informal</span>) <span class="eb" id="car__129">run/</span>(<span class="ungi" id="car__130">British English</span>) <span class="eb" id="car__131">jump</span> a red light/the lights</span><span class="para"><span class="eb" id="car__132">be arrested for/charged with</span> (<span class="ungi" id="car__133">British English</span>) drink-driving/(<span class="ungi" id="car__134">both US</span>) driving under the influence (DUI)/driving while intoxicated (DWI)</span><span class="para"><span class="eb" id="car__135">be banned/</span>(<span class="ungi" id="car__136">British English</span>) <span class="eb" id="car__137">disqualified</span> from driving</span></span><!-- End of DIV entry--></div>
245
+ </div>
246
+
247
+
248
+ </div>
249
+ </div>
250
+ <div class="responsive_row">
251
+
252
+
253
+ <div class=' responsive_hide_on_smartphone'>
254
+ <div id='dfp_ad_Entry_Btm_300x250' style='width:300px; height:250px;'>
255
+ <script type='text/javascript'>
256
+ var smartphone = false;
257
+ var tablet = false;
258
+ var hd = false;
259
+ try{
260
+ var smartphone = window.matchMedia("(max-width: 761px)").matches;
261
+ var tablet = window.matchMedia("(min-width: 762px) and (max-width: 928px)").matches;
262
+ var hd = window.matchMedia("(min-width: 1220px)").matches;
263
+ }catch(err){}
264
+ var desktop = (!smartphone && !tablet && !hd);
265
+ if (smartphone && false || tablet && true || desktop && true || hd && true)
266
+ googletag.cmd.push(function() {googletag.display('dfp_ad_Entry_Btm_300x250'); });
267
+ </script>
268
+ </div>
269
+
270
+ </div>
271
+
272
+
273
+ <div class='responsive_center_on_smartphone responsive_hide_on_tablet responsive_hide_on_desktop responsive_hide_on_hd'>
274
+ <div id='dfp_ad_Entry_300x250' style='width:300px; height:250px;'>
275
+ <script type='text/javascript'>
276
+ var smartphone = false;
277
+ var tablet = false;
278
+ var hd = false;
279
+ try{
280
+ var smartphone = window.matchMedia("(max-width: 761px)").matches;
281
+ var tablet = window.matchMedia("(min-width: 762px) and (max-width: 928px)").matches;
282
+ var hd = window.matchMedia("(min-width: 1220px)").matches;
283
+ }catch(err){}
284
+ var desktop = (!smartphone && !tablet && !hd);
285
+ if (smartphone && true || tablet && false || desktop && false || hd && false)
286
+ googletag.cmd.push(function() {googletag.display('dfp_ad_Entry_300x250'); });
287
+ </script>
288
+ </div>
289
+
290
+ </div>
291
+ </div>
292
+
293
+ </div>
294
+ </div>
295
+
296
+ <div id="leftcolumn" class="responsive_cell_right">
297
+ <div class="responsive_row responsive_display_on_hd" style="height:108px;"></div>
298
+
299
+ <div id="relatedentries" class="responsive_row">
300
+ <div id="resulthead">Search Results</div>
301
+ <ul>
302
+ <li class="currentpage">
303
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car" title="car noun definition"><span class='arl1'>car <pos>noun</pos></span></a>
304
+ </li>
305
+ <li>
306
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/carriage#carriage__15" title="carriage noun definition"><span class='arl2'>carriage <pos>noun</pos></span></a>
307
+ </li>
308
+ <li>
309
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/truck_1#truck_1__23" title="truck noun definition"><span class='arl2'>truck <pos>noun</pos></span></a>
310
+ </li>
311
+ <li>
312
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/in-car" title="in-car adjective definition"><span class='arl4'>in-car <pos>adjective</pos></span></a>
313
+ </li>
314
+ <li>
315
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-bra" title="car bra noun definition"><span class='arl4'>car bra <pos>noun</pos></span></a>
316
+ </li>
317
+ <li>
318
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-tax" title="car tax noun definition"><span class='arl4'>car tax <pos>noun</pos></span></a>
319
+ </li>
320
+ <li>
321
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/club-car" title="club car noun definition"><span class='arl4'>club car <pos>noun</pos></span></a>
322
+ </li>
323
+ <li>
324
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/cable-car" title="cable car noun definition"><span class='arl4'>cable car <pos>noun</pos></span></a>
325
+ </li>
326
+ <li>
327
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-bomb" title="car bomb noun definition"><span class='arl4'>car bomb <pos>noun</pos></span></a>
328
+ </li>
329
+ <li>
330
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-coat" title="car coat noun definition"><span class='arl4'>car coat <pos>noun</pos></span></a>
331
+ </li>
332
+ <li>
333
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-park" title="car park noun definition"><span class='arl4'>car park <pos>noun</pos></span></a>
334
+ </li>
335
+ <li>
336
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-phone" title="car phone noun definition"><span class='arl4'>car phone <pos>noun</pos></span></a>
337
+ </li>
338
+ <li>
339
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-pool" title="car pool noun definition"><span class='arl4'>car pool <pos>noun</pos></span></a>
340
+ </li>
341
+ <li>
342
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-seat" title="car seat noun definition"><span class='arl4'>car seat <pos>noun</pos></span></a>
343
+ </li>
344
+ <li>
345
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-wash" title="car wash noun definition"><span class='arl4'>car wash <pos>noun</pos></span></a>
346
+ </li>
347
+ <li>
348
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/motor-car" title="motor car noun definition"><span class='arl4'>motor car <pos>noun</pos></span></a>
349
+ </li>
350
+ <li>
351
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/panda-car" title="panda car noun definition"><span class='arl4'>panda car <pos>noun</pos></span></a>
352
+ </li>
353
+ <li>
354
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/race-car" title="race car noun definition"><span class='arl4'>race car <pos>noun</pos></span></a>
355
+ </li>
356
+ <li>
357
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/squad-car" title="squad car noun definition"><span class='arl4'>squad car <pos>noun</pos></span></a>
358
+ </li>
359
+ <li>
360
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/stock-car" title="stock car noun definition"><span class='arl4'>stock car <pos>noun</pos></span></a>
361
+ </li>
362
+ </ul>
363
+ </div>
364
+
365
+ <div class="responsive_row">
366
+
367
+
368
+ <div class='responsive_center_on_smartphone'>
369
+ <div id='dfp_ad_Entry_180x150' style='width:180px; height:150px;'>
370
+ <script type='text/javascript'>
371
+ var smartphone = false;
372
+ var tablet = false;
373
+ var hd = false;
374
+ try{
375
+ var smartphone = window.matchMedia("(max-width: 761px)").matches;
376
+ var tablet = window.matchMedia("(min-width: 762px) and (max-width: 928px)").matches;
377
+ var hd = window.matchMedia("(min-width: 1220px)").matches;
378
+ }catch(err){}
379
+ var desktop = (!smartphone && !tablet && !hd);
380
+ if (smartphone && true || tablet && true || desktop && true || hd && true)
381
+ googletag.cmd.push(function() {googletag.display('dfp_ad_Entry_180x150'); });
382
+ </script>
383
+ </div>
384
+
385
+ </div>
386
+ </div> </div>
387
+ </div>
388
+
389
+ <div id="ox-footer" class="responsive_row">
390
+ <div class="responsive_footer_left">
391
+ <div class="ox-oupLogo responsive_footer_left_left"></div>
392
+ <div class="versionSelector responsive_footer_left_right">
393
+ <select name="lang" id="headerVersion" title="Select language">
394
+
395
+
396
+ <option
397
+ selected="selected" name="uk"
398
+ value="http://www.oxfordlearnersdictionaries.com/definition/english/car">English (UK)</option>
399
+
400
+
401
+ <option
402
+ name="us"
403
+ value="http://www.oxfordlearnersdictionaries.com/us/definition/english/car">English (US)</option>
404
+
405
+
406
+ </select>
407
+ </div>
408
+ </div>
409
+ <ul id="footlinks">
410
+ <li>&copy; 2014 Oxford University Press</li>
411
+ <li><a href="http://www.oxfordlearnersdictionaries.com/search_widget_info.html">Dictionary search for your site</a></li>
412
+ <li><a href="http://elt.oup.com/" onclick="return ! window.open(this.href);">OUP English Language Teaching website</a></li>
413
+ <li><a href="http://www.oxfordlearnersdictionaries.com/browse/">Browse Dictionaries</a></li>
414
+ <li><a href="http://www.oxfordlearnersdictionaries.com/privacy.html">Privacy &amp; Legal notice</a></li>
415
+ </ul>
416
+ </div>
417
+
418
+ </div>
419
+ </div>
420
+
421
+ <script language="JavaScript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/common.js?version=1.1.28"></script>
422
+ <script language="javascript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/doubleclick.js?version=1.1.28"></script>
423
+ <script language="JavaScript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/oxford.js?version=1.1.28"></script>
424
+ <script language="JavaScript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/entry.js?version=1.1.28"></script>
425
+ <script language="JavaScript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/jquery.lightbox-0.5.min.js?version=1.1.28"></script>
426
+ <script language="javascript" type="text/javascript">
427
+
428
+ $(document).ready(function() { setupDoubleClick('http://www.oxfordlearnersdictionaries.com/', 'english', false, 'main-container', null, null, null); });
429
+ $('img.over').each(function(){
430
+ var t=$(this);
431
+ var src1= t.attr('src'); // initial src
432
+ var newSrc = src1.substring(0, src1.lastIndexOf('.')); // let's get file name without extension
433
+ t.hover(function(){
434
+ $(this).attr('src', newSrc+ '-over.' + /[^.]+$/.exec(src1)); //last part is for extension
435
+ }, function(){
436
+ $(this).attr('src', newSrc + '.' + /[^.]+$/.exec(src1)); //removing '-over' from the name
437
+ });
438
+ });
439
+ </script>
440
+ <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
441
+
442
+ <script language="javascript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/responsive.js?version=1.1.28"></script>
443
+ <script>
444
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
445
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
446
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
447
+ })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
448
+
449
+ ga('create', 'UA-13175707-1',
450
+ {
451
+ 'siteSpeedSampleRate': 10
452
+ });
453
+ ga('send', 'pageview');
454
+ </script>
455
+
456
+ <script type="text/javascript">_qoptions={ qacct:"p-cfSla1Cke_iBQ" };</script>
457
+ <script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
458
+ <noscript><img src="http://pixel.quantserve.com/pixel/p-cfSla1Cke_iBQ.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/></noscript>
459
+
460
+ <script type='text/javascript'>
461
+ var smartphone = false;
462
+ var tablet = false;
463
+ var hd = false;
464
+ try{
465
+ var smartphone = window.matchMedia("(max-width: 761px)").matches;
466
+ var tablet = window.matchMedia("(min-width: 762px) and (max-width: 928px)").matches;
467
+ var hd = window.matchMedia("(min-width: 1220px)").matches;
468
+ }catch(err){}
469
+ var desktop = (!smartphone && !tablet && !hd);
470
+ if(!smartphone){
471
+ if(hd && true){
472
+ $("#leaderboardHD").append("<div id='dfp_ad_Entry_728x90' style='width:728px; height:90px; margin-bottom:10px;'>")
473
+ $('<script>googletag.cmd.push(function() {googletag.display("dfp_ad_Entry_728x90"); });</' + 'script>').appendTo("#dfp_ad_Entry_728x90")
474
+ }
475
+ else if (!(hd && true) || tablet && true || desktop && ad.desktop){
476
+ $("#leaderboardOthers").append("<div id='dfp_ad_Entry_728x90' style='width:728px; height:90px; margin-bottom:10px;'>")
477
+ $('<script>googletag.cmd.push(function() {googletag.display("dfp_ad_Entry_728x90"); });</' + 'script>').appendTo("#dfp_ad_Entry_728x90")
478
+ }
479
+ }
480
+ </script>
481
+ </body>
482
+ </html>