- published: 21 Aug 2024
- views: 30
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
Coordinates: 52°30′N 1°49′W / 52.50°N 1.82°W / 52.50; -1.82
Birmingham, Hodge Hill is a constituency of part of the city of Birmingham represented in the House of Commons of the UK Parliament since 2004 by Liam Byrne of the Labour Party.
The constituency was created in 1983, largely replacing the Birmingham Stechford constituency.
Hodge Hill is a traditionally Labour-governed area, normally seeing large majorities for the party. However, in 2004 the appointment of the sitting Member of Parliament (MP), Terry Davis, as secretary general of the Council of Europe resulted in a fiercely contested by-election. The seat saw a fierce challenge by the Liberal Democrats who hoped to build on their previous by-election gain at Brent East, as well as competition for the anti-war vote from RESPECT The Unity Coalition. On a low turnout, Labour's Liam Byrne held the seat by a margin of just 460 votes over the Liberal Democrats, with RESPECT taking over 1000 votes.
Coordinates: 52°29′49″N 1°49′08″W / 52.497°N 1.819°W / 52.497; -1.819
Hodge Hill is an area seven km east of Birmingham City Centre, England. It is also a council constituency, managed by its own district committee.
The constituency includes the smaller constituency ward and the wards of Bordesley Green, Shard End and Washwood Heath.
A by-election for the parliamentary constituency of Hodge Hill took place on July 15, 2004 after the resignation of sitting MP Terry Davis. It was won by Liam Byrne.
The Hodge Hill Ward is currently represented by three councillors on Birmingham City Council.
Hodge Hill Ward has adopted a Ward Support Officer.
The boundaries of the Hodge Hill Ward are defined by the M6 motorway to the north and A4040 outer circle to the west.
Hodge Hill Common and the Cole Valley, which are covered by the Kingfisher Country Park, are major areas of open space within the ward.
The 2001 Population Census recorded 24,825 people living within the ward with a population density of 4,566 people per km² compared with 3,649 people per km² for Birmingham. Ethnic minorities represent 13.9% (3,442) of the ward's population as opposed to 29.6% for Birmingham in general.
Birmingham (i/ˈbɜːrmɪŋəm/) is a city and metropolitan borough in the West Midlands, England. It is the largest and most populous British city outside London with 1,101,360 residents (2014 est.), and its population increase of 88,400 residents between the 2001 and 2011 censuses was greater than that of any other British local authority. The city lies within the West Midlands Built-up Area, the third most populous built-up area in the United Kingdom with 2,440,986 residents (2011 census), and its metropolitan area is the United Kingdom's second most populous with 3,701,107 residents (2012 est.) and is also the 9th largest metropolitan area in Europe.
Birmingham (Live with Orchestra & Choir) is a 2013 live album by Steve Harley & Cockney Rebel, featuring the Orchestra of the Swan and their Chamber Choir Orchestra Conductor Andrew Powell, who was the man who did the string arrangements on the original studio albums. The album, a Comeuppance production, was released by Absolute via Universal. A DVD version of the performance was also released at the same time.
The album was recorded and filmed live at the Birmingham Symphony Hall, England on 24 November 2012. The band, with the orchestra and chamber choir, made up about 50 performers together, and performed the band's first two albums The Human Menagerie and The Psychomodo in their entirety - with some of the songs entirely new to the stage. The sold-out show was a one off performance of the two albums, and also included Spandau Ballet's Steve Norman on saxophone and percussion. Aside from the two albums performed, the band also played three additional tracks on the night; "Judy Teen" (the band's UK Top 5 hit single from 1974), "Stranger Comes to Town" (the title track from Harley's 2010 album) and "Black or White" (from the 1976 album Timeless Flight. Harley commented "It's been a long time coming - something like 39 years. Now we're here, at last, with an orchestra and a choir and a big rock band, to play those first two albums pretty well the way they appeared on the original vinyl. Maybe some things should never change, in spite of progress. Welcome, my old friends."
Birmingham (/ˈbɜːrmɪŋhæm/ BUR-ming-ham) is the largest city in the U.S. state of Alabama. The city is the county seat of Jefferson County. The city's population was 212,237 according to the 2010 United States Census. The Birmingham-Hoover Metropolitan Statistical Area had a population of about 1,128,047 according to the 2010 Census, which is approximately one quarter of Alabama's population.
Birmingham was founded in 1871, during the post-Civil War Reconstruction period, through the merger of three pre-existing farm towns, notably, former Elyton. It grew from there, annexing many more of its smaller neighbors, into an industrial and railroad transportation center with a focus on mining, the iron and steel industry, and railroading. Birmingham was named for Birmingham, England, UK; one of that nation's major industrial cities. Most of the original settlers who founded Birmingham were of English ancestry. In one writer's view, the city was planned as a place where cheap, non-unionized, and African-American labor from rural Alabama could be employed in the city's steel mills and blast furnaces, giving it a competitive advantage over industrial cities in the Midwest and Northeast.
This video was uploaded from an Android phone.
Driving from Hodge Hill | Driving in Birmingham | #5 | England, United Kingdom
CHICKAROS® in now open in Hodgehill, Birmingham!
Two Thugs Beat a Guy Outside His House With Baseball Bats on Madison Avenue Hodge Hill Birmingham.
A 'dangerous' masked robber who attacked and strangled a woman in her home has been jailed after he was caught out by his woolly hat. Brandon Hayden was a member of a four-man gang who targeted a home in Eastbourne Avenue, Hodge Hill, in broad daylight. But while three of them scarpered and drove off Hayden climbed in through a front window and viciously assaulted a lady, in her 60s, threatening to kill her. He dragged the victim into the kitchen, grabbed her by the neck, slapped her in the face, took cable ties from his backpack and motioned to grab a knife. https://www.birminghammail.co.uk/news/midlands-news/face-masked-hodge-hill-robber-27305361 #maskedmen #birmingham #uk #crime Follow us on our Social Media channels: Facebook: https://www.facebook.com/birmingham.live/ Instagram: h...
Please Like, Share and Subscribe
This walk starts at a new housing development off Coleshill road and continues through Hodge Hill Common and continues up Bromford road, Ventor Avenue unto Sandhurst Avenue and finally walkng the length of Brockhurst road where my walk concludes Hope you enjoy this virtual walk through this beautiful neighbourhood of Hodge Hill Please remember to like, comment, share and subscribe.
#Birmingham #Vlog #4K
KIds Marathon at Hodge Hill Primary School, Birmingham
Subscribe to the channel for more of the best Official EFL videos!
Chris Davies gives his post-match thoughts following Blues' 1-1 draw with Northampton Town in Sky Bet League One. Head over to BluesTV to subscribe and never miss another Blues video: https://www.bcfc.com/blues-tv/ https://www.bcfc.com https://www.bcfc.com/blues-tv/ https://www.twitter.com/BCFC https://www.facebook.com/BCFCofficial Leave us a comment below!
This event in the University of Birmingham's Super Series 24/25 focuses on Rugby Union with Kickstart from the Bournbrook pitches. As the University of Birmingham take on the University of Bath. They'll also be performances from two UOB Cheer teams before the game and during half time.
What will you like to know about Birmingham? Birmingham is one of the unique cities in England, it is located in the West Midland area of England, approximately 160 km or 100 miles away from London. It is often referred to as the "Second City '' of the United Kingdom, as it is considered a major metropolitan in the heartland of England. What else? Birmingham is regarded as the largest city in the West Midlands region and the second-most populous city in the UK, after London. The city has a very rich history, a diverse population, and a thriving economy, Birmingham holds a significant place in the country's cultural, economic, and social landscape. Hence it is not surprising it is getting attention with more and more people relocating to the city. So, in this piece, we provide well-rounded ...
Have you ever lived in Birmingham, Alabama? Have you ever considered it? If you ever have, you probably already know Birmingham is a nightmare and has a long history of crime, segregation, and political corruption. Birmingham isn't the best city in the United States or Alabama, which is probably why they haven't seen any real population growth in decades. Birmingham is a great city in an excellent state, but if you Google "what is Birmingham, Alabama known for," you are going to find a history of Jim Crow, segregation, and some really ugly history. Most people will tell you to look at other cities in Alabama, like Mobile, Huntsville, and Tuscaloosa. Alabama before you move to Birmingham. The good news is it is very affordable for real estate. So, before you call a Birmingham realtor...
RM Risk Management ⚠️ https://rmriskmanagement.co.uk Blues Focus 👓 https://linktr.ee/bluesfocus Tommy 👱♂️ https://linktr.ee/tommykelsall Blues left frustrated after dropping two points to Northampton via a Mitch Pinnock late equaliser. Despite Davies’ side controlling the possession, the visitors sat in deep making it hard for us get chances away. But at the same time over complicated the build up and perhaps should’ve played more direct. The Cobbler’s had the best chance of the half as Jon Guthrie found himself free in the box but was denied the first goal of the game brilliantly by Ryan Allsop. The opener finally came in the 58th minute for the home team after Jay Stansfield bundled in his fifth of the season. A scrappy goal but Willumsson did great to keep Cochrane’s cross a...
In this video, we'll show you the Top 10 Things to do in Birmingham, United Kingdom 2025. 👉 Support our channel by becoming a member: https://www.youtube.com/channel/UCbgx3Z8-u-QJa9PuKbI6vXQ/join 👉 Subscribe to our channel and turn on 🔔 http://bit.ly/travel-xtreme CHAPTERS: 0:00 Intro 0:43 #10 See the Cute Creatures at Birmingham Wildlife Conservation Park 1:36 #9 See the Birmingham Back to Backs 2:32 #8 Barber Institute of Fine Arts 3:19 #7 Enjoy a Concert at St. Philip's Cathedral 4:14 #6 Wander the Jewellery Quarter 5:34 #5 Take the Family to the National SEA LIFE Centre Birmingham 6:41 #4 Get Smart at Thinktank, Birmingham Science Museum 7:40 #3 See the Blooms at The Birmingham Botanical Gardens 8:39 #2 Take a Tour of Birmingham Museum & Art Gallery 9:37 #1 Explore Victoria Square & t...
Today, the Cobblers travelled to Birmingham for the match against Birmingham City. Northampton would be defensively minded but it would pay off as they got a 96th minute equaliser. Instagram - instagram.com/bluenose_tom Tiktok - tiktok.com/@bluenose.tom Fantasy EFL: Code to join Bluenose Tom league: O71Y50JD Link join Bluenose Tom league: https://fantasy.efl.com/leagues/join/O71Y50JD
Provided to YouTube by Universal Music Group Paint Me A Birmingham · Tracy Lawrence Strong ℗ 2004 DreamWorks Records Nashville Released on: 2004-03-30 Producer: James Stroud Studio Personnel, Recording Engineer, Engineer, Mixer: Julian King Studio Personnel, Asst. Recording Engineer: David Bryant Studio Personnel, Asst. Recording Engineer, Assistant Mixer: Rich Hanson Studio Personnel, Asst. Recording Engineer, Assistant Mixer: Jake Burns Studio Personnel, Asst. Recording Engineer: Anthony Armendaniz Studio Personnel, Production Coordinator: Doug Rich Studio Personnel, Production Coordinator: Tammy Luker Associated Performer, Drums: Shannon Forrest Associated Performer, Electric Guitar: Brent Mason Associated Performer, Acoustic Guitar: Biff Watson Associated ...
Birmingham is one of the biggest cities in the United Kingdom, and it is also one of the biggest economies in the country having many industries and sectors actively involved in its economic output. As a result of this, Birmingham is increasingly becoming a major hotspot for those who wish to relocate for a better life. And obviously, Birmingham provides several opportunities for people of all levels. However, with the numerous opportunities that Birmingham provides, it still has its dark sides that many don't know about Birmingham. Many think it is all rosy over there. And in this piece, we provide you with information on what you need to know about the dark side of Birmingham. Homelessness One of the dark sides of Birmingham that many people have not come to terms with is the issue of h...
Coordinates: 52°30′N 1°49′W / 52.50°N 1.82°W / 52.50; -1.82
Birmingham, Hodge Hill is a constituency of part of the city of Birmingham represented in the House of Commons of the UK Parliament since 2004 by Liam Byrne of the Labour Party.
The constituency was created in 1983, largely replacing the Birmingham Stechford constituency.
Hodge Hill is a traditionally Labour-governed area, normally seeing large majorities for the party. However, in 2004 the appointment of the sitting Member of Parliament (MP), Terry Davis, as secretary general of the Council of Europe resulted in a fiercely contested by-election. The seat saw a fierce challenge by the Liberal Democrats who hoped to build on their previous by-election gain at Brent East, as well as competition for the anti-war vote from RESPECT The Unity Coalition. On a low turnout, Labour's Liam Byrne held the seat by a margin of just 460 votes over the Liberal Democrats, with RESPECT taking over 1000 votes.