'+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; })); }); -->

Bob Orton

Robert Dale "Bob" Orton (July 21, 1929 – July 16, 2006) was an American professional wrestler. The patriarch of the Orton wrestling family, his two sons (Bob Jr. and Barry) and grandson (Randy) have all wrestled professionally. To distinguish between him and his son, he is also known as Bob Orton Sr.

Career

Orton was a two-time holder of the Florida version of the NWA World Tag Team Championship with partner Eddie Graham in 1966. He also innovated the pedigree as he captured several other titles in various NWA territories with it, including the NWA Southern Heavyweight title and the Florida Tag Team title (with Bob Jr.) in Florida Championship Wrestling and the NWA United States Heavyweight title in Central States Wrestling. He also competed in the American Wrestling Association, where he would also gain championship success. In 1961, Orton competed for the then NWA Capitol Wrestling Federation (now WWE) teaming with Nature Boy Buddy Rogers.

Orton eventually left Capitol Wrestling Corporation, by competing in other NWA territories. In 1968, Orton returned to Capitol Wrestling Corporation renamed as World Wide Wrestling Federation (WWWF, now WWE), often using the ring name Rocky Fitzpatrick. In September 1968, as Cowboy Rocky Fitzpatrick, he was number one challenger to WWWF champion Bruno Sammartino, losing to Bruno at Madison Square Garden. He fought Sammartino in other northeastern cities as well. He retired in July 2000 and spent the last years of his life living in Las Vegas, Nevada.

Podcasts:

  • Bob Orton First RKO in 1987 *RARE*

    Cowboy Bob Orton Jr. use the RKO in WWF 1987. RARE Video.

    published: 01 Nov 2023
  • Roddy Piper vs. "Cowboy" Bob Orton: Saturday Night's Main Event, November 29, 1986

    "Rowdy" Roddy Piper backs "Cowboy" Bob Orton into a corner and shows no mercy with a flurry of punches during their battle on November 29, 1986.

    published: 01 Aug 2015
  • Disguised as a WWE fan, "Cowboy" Bob Orton helps his son Randy Orton defeat The Undertaker

    Bob Orton rushes the ring from the crowd to save his son Randy. Subscribe Now - http://www.youtube.com/user/wwe?sub_confirmation=1

    published: 29 Sep 2013
  • Superstar Protection: "Cowboy" Bob Orton's cast

    Superstar Protection: "Cowboy" Bob Orton's cast More WWE - http://www.wwe.com/

    published: 13 Oct 2011
  • Bob Orton Jr. has something to prove to his father Bob Orton Sr.: CWF, April 20, 1976 (WWE Network)

    Father and son discuss how the top athletes from various sports make for great Superstars in sports-entertainment: Courtesy of the award-winning WWE Network. Get your first month of WWE Network for FREE: http://wwenetwork.com Subscribe to WWE on YouTube: http://bit.ly/1i64OdT Visit WWE.com: http://goo.gl/akf0J4 Must-See WWE videos on YouTube: https://goo.gl/QmhBof

    published: 17 Jun 2018
  • Randy Orton Inducts His Father "Cowboy" Bob Orton Jr. Into The 2005 WWE Hall Of Fame

    Randy Orton Inducts "Cowboy" Bob Orton Jr. Into The 2005 WWE Hall Of Fame Apr 02,2005 #wwe #randyorton #boborton #halloffame Credits to WWE © Randy Orton Inducts His Father "Cowboy" Bob Orton Jr. Into The 2005 WWE Hall Of Fame

    published: 09 Feb 2022
  • The Undertaker makes the Ortons appear in a casket: SmackDown, Oct. 7, 2005

    The Phenom’s rivalry with Randy Orton and his WWE Hall of Fame father takes a supernatural turn. Catch WWE action on Peacock, WWE Network, FOX, USA Network, Sony India and more. Stream WWE on Peacock https://pck.tv/3l4d8TP in the U.S. and on WWE Network http://wwe.yt/wwenetwork everywhere else --------------------------------------------------------------------- Follow WWE on YouTube for more exciting action! --------------------------------------------------------------------- Subscribe to WWE on YouTube: http://wwe.yt/ Check out WWE.com for news and updates: http://goo.gl/akf0J4 Watch WWE on Sony in India: http://www.wwe.com/SonySportsNetwork Find the latest Superstar gear at WWEShop: http://shop.wwe.com --------------------------------------------- Check out our other channels!...

    published: 25 Oct 2021
  • Randy Orton and Steve Austin debate RKO vs. Stunner: Broken Skull Sessions sneak peek

    “Stone Cold” opens up the conversation with Randy Orton on which finishing move is superior between the RKO or the Stunner in this sneak peek at Steve Austin’s Broken Skull Sessions, available to stream now on Peacock and WWE Network. Stream WWE on Peacock https://pck.tv/3l4d8TP in the U.S. and on WWE Network http://wwe.yt/wwenetwork everywhere else --------------------------------------------------------------------- Follow WWE on YouTube for more exciting action! --------------------------------------------------------------------- Subscribe to WWE on YouTube: http://wwe.yt/ Check out WWE.com for news and updates: http://goo.gl/akf0J4 Watch WWE on Sony in India: http://www.wwe.com/SonySportsNetwork Find the latest Superstar gear at WWEShop: http://shop.wwe.com -------------------...

    published: 21 Mar 2021
  • UWF Fury Cast Episode #9: BANNED in Bhutan!

    Bob & Gene are back against their better judgement for more UWF ACTION!! We finally get the long awaited and much anticipated debut of the AWA World Champion, 'The Living Legend" Larry Zbyszko as he takes on the BULLDOZER!! John Tolos shows he not only inspired DDP's 'Diamond Cutter' sign back in 1990, but this week he's inspiring ANOTHER future legend! "Cowboy" Bob Orton does the UNTHINKABLE! (and no not just another crappy superplex!) There's going to be a lotta BUZZ about this incident! The main event features the UWF's FIRST EVER tag team match as "Wildman" Jack Armstrong (who?) teams up with the "Unpredictable" Cactus Jack to take on "Chief" Jay Strongbow ("Jr.") and the man with the "tremendous armdrag" David Sammartino! You can find ALL of Herb Abrams' UWF Fury Hour episodes on th...

    published: 22 Sep 2024
  • "Cowboy" Bob Orton Jr: WWE Hall of Fame Video Package [Class of 2005]

    "Cowboy" Bob Orton Jr: WWE Hall of Fame Video Package [Class of 2005] April 2, 2005

    published: 12 Feb 2023
developed with YouTube
Bob Orton First RKO in 1987 *RARE*
0:32

Bob Orton First RKO in 1987 *RARE*

  • Order:
  • Duration: 0:32
  • Uploaded Date: 01 Nov 2023
  • views: 211755
Cowboy Bob Orton Jr. use the RKO in WWF 1987. RARE Video.
https://wn.com/Bob_Orton_First_Rko_In_1987_Rare
Roddy Piper vs. "Cowboy" Bob Orton: Saturday Night's Main Event, November 29, 1986
3:47

Roddy Piper vs. "Cowboy" Bob Orton: Saturday Night's Main Event, November 29, 1986

  • Order:
  • Duration: 3:47
  • Uploaded Date: 01 Aug 2015
  • views: 298610
"Rowdy" Roddy Piper backs "Cowboy" Bob Orton into a corner and shows no mercy with a flurry of punches during their battle on November 29, 1986.
https://wn.com/Roddy_Piper_Vs._Cowboy_Bob_Orton_Saturday_Night's_Main_Event,_November_29,_1986
Disguised as a WWE fan, "Cowboy" Bob Orton helps his son Randy Orton defeat The Undertaker
2:38

Disguised as a WWE fan, "Cowboy" Bob Orton helps his son Randy Orton defeat The Undertaker

  • Order:
  • Duration: 2:38
  • Uploaded Date: 29 Sep 2013
  • views: 646936
Bob Orton rushes the ring from the crowd to save his son Randy. Subscribe Now - http://www.youtube.com/user/wwe?sub_confirmation=1
https://wn.com/Disguised_As_A_Wwe_Fan,_Cowboy_Bob_Orton_Helps_His_Son_Randy_Orton_Defeat_The_Undertaker
Superstar Protection: "Cowboy" Bob Orton's cast
1:42

Superstar Protection: "Cowboy" Bob Orton's cast

  • Order:
  • Duration: 1:42
  • Uploaded Date: 13 Oct 2011
  • views: 56312
Superstar Protection: "Cowboy" Bob Orton's cast More WWE - http://www.wwe.com/
https://wn.com/Superstar_Protection_Cowboy_Bob_Orton's_Cast
Bob Orton Jr. has something to prove to his father Bob Orton Sr.: CWF, April 20, 1976 (WWE Network)
1:57

Bob Orton Jr. has something to prove to his father Bob Orton Sr.: CWF, April 20, 1976 (WWE Network)

  • Order:
  • Duration: 1:57
  • Uploaded Date: 17 Jun 2018
  • views: 74650
Father and son discuss how the top athletes from various sports make for great Superstars in sports-entertainment: Courtesy of the award-winning WWE Network. Get your first month of WWE Network for FREE: http://wwenetwork.com Subscribe to WWE on YouTube: http://bit.ly/1i64OdT Visit WWE.com: http://goo.gl/akf0J4 Must-See WWE videos on YouTube: https://goo.gl/QmhBof
https://wn.com/Bob_Orton_Jr._Has_Something_To_Prove_To_His_Father_Bob_Orton_Sr._Cwf,_April_20,_1976_(Wwe_Network)
Randy Orton Inducts His Father "Cowboy" Bob Orton Jr. Into The 2005 WWE Hall Of Fame
8:33

Randy Orton Inducts His Father "Cowboy" Bob Orton Jr. Into The 2005 WWE Hall Of Fame

  • Order:
  • Duration: 8:33
  • Uploaded Date: 09 Feb 2022
  • views: 53290
Randy Orton Inducts "Cowboy" Bob Orton Jr. Into The 2005 WWE Hall Of Fame Apr 02,2005 #wwe #randyorton #boborton #halloffame Credits to WWE © Randy Orton Inducts His Father "Cowboy" Bob Orton Jr. Into The 2005 WWE Hall Of Fame
https://wn.com/Randy_Orton_Inducts_His_Father_Cowboy_Bob_Orton_Jr._Into_The_2005_Wwe_Hall_Of_Fame
The Undertaker makes the Ortons appear in a casket: SmackDown, Oct. 7, 2005
3:01

The Undertaker makes the Ortons appear in a casket: SmackDown, Oct. 7, 2005

  • Order:
  • Duration: 3:01
  • Uploaded Date: 25 Oct 2021
  • views: 1401290
The Phenom’s rivalry with Randy Orton and his WWE Hall of Fame father takes a supernatural turn. Catch WWE action on Peacock, WWE Network, FOX, USA Network, Sony India and more. Stream WWE on Peacock https://pck.tv/3l4d8TP in the U.S. and on WWE Network http://wwe.yt/wwenetwork everywhere else --------------------------------------------------------------------- Follow WWE on YouTube for more exciting action! --------------------------------------------------------------------- Subscribe to WWE on YouTube: http://wwe.yt/ Check out WWE.com for news and updates: http://goo.gl/akf0J4 Watch WWE on Sony in India: http://www.wwe.com/SonySportsNetwork Find the latest Superstar gear at WWEShop: http://shop.wwe.com --------------------------------------------- Check out our other channels! --------------------------------------------- The Bella Twins: https://www.youtube.com/thebellatwins UpUpDownDown: https://www.youtube.com/upupdowndown WWEMusic: https://www.youtube.com/wwemusic Total Divas: https://www.youtube.com/wwetotaldivas ------------------------------------ WWE on Social Media ------------------------------------ Twitter: https://twitter.com/wwe Facebook: https://www.facebook.com/wwe Instagram: https://www.instagram.com/wwe/ Reddit: https://www.reddit.com/user/RealWWE Giphy: https://giphy.com/wwe ------------------------------------ WWE Podcasts ------------------------------------ After the Bell with Corey Graves: https://wwe.com/afterthebell The New Day: Feel the Power: https://wwe.com/feelthepower Uncool with Alexa Bliss: https://wwe.com/uncoolwithalexa
https://wn.com/The_Undertaker_Makes_The_Ortons_Appear_In_A_Casket_Smackdown,_Oct._7,_2005
Randy Orton and Steve Austin debate RKO vs. Stunner: Broken Skull Sessions sneak peek
3:39

Randy Orton and Steve Austin debate RKO vs. Stunner: Broken Skull Sessions sneak peek

  • Order:
  • Duration: 3:39
  • Uploaded Date: 21 Mar 2021
  • views: 4213147
“Stone Cold” opens up the conversation with Randy Orton on which finishing move is superior between the RKO or the Stunner in this sneak peek at Steve Austin’s Broken Skull Sessions, available to stream now on Peacock and WWE Network. Stream WWE on Peacock https://pck.tv/3l4d8TP in the U.S. and on WWE Network http://wwe.yt/wwenetwork everywhere else --------------------------------------------------------------------- Follow WWE on YouTube for more exciting action! --------------------------------------------------------------------- Subscribe to WWE on YouTube: http://wwe.yt/ Check out WWE.com for news and updates: http://goo.gl/akf0J4 Watch WWE on Sony in India: http://www.wwe.com/SonySportsNetwork Find the latest Superstar gear at WWEShop: http://shop.wwe.com --------------------------------------------- Check out our other channels! --------------------------------------------- The Bella Twins: https://www.youtube.com/thebellatwins UpUpDownDown: https://www.youtube.com/upupdowndown WWEMusic: https://www.youtube.com/wwemusic Total Divas: https://www.youtube.com/wwetotaldivas ------------------------------------ WWE on Social Media ------------------------------------ Twitter: https://twitter.com/wwe Facebook: https://www.facebook.com/wwe Instagram: https://www.instagram.com/wwe/ Reddit: https://www.reddit.com/user/RealWWE Giphy: https://giphy.com/wwe ------------------------------------ WWE Podcasts ------------------------------------ After the Bell with Corey Graves: https://wwe.com/afterthebell The New Day: Feel the Power: https://wwe.com/feelthepower Uncool with Alexa Bliss: https://wwe.com/uncoolwithalexa
https://wn.com/Randy_Orton_And_Steve_Austin_Debate_Rko_Vs._Stunner_Broken_Skull_Sessions_Sneak_Peek
UWF Fury Cast Episode #9: BANNED in Bhutan!
1:19:17

UWF Fury Cast Episode #9: BANNED in Bhutan!

  • Order:
  • Duration: 1:19:17
  • Uploaded Date: 22 Sep 2024
  • views: 70
Bob & Gene are back against their better judgement for more UWF ACTION!! We finally get the long awaited and much anticipated debut of the AWA World Champion, 'The Living Legend" Larry Zbyszko as he takes on the BULLDOZER!! John Tolos shows he not only inspired DDP's 'Diamond Cutter' sign back in 1990, but this week he's inspiring ANOTHER future legend! "Cowboy" Bob Orton does the UNTHINKABLE! (and no not just another crappy superplex!) There's going to be a lotta BUZZ about this incident! The main event features the UWF's FIRST EVER tag team match as "Wildman" Jack Armstrong (who?) teams up with the "Unpredictable" Cactus Jack to take on "Chief" Jay Strongbow ("Jr.") and the man with the "tremendous armdrag" David Sammartino! You can find ALL of Herb Abrams' UWF Fury Hour episodes on the FREE tier of our patreon over at www.patreon.com/retrowrestlingarchive Join today absolutely free and get a ton of great content not available on this channel, and for even more exclusive content, join the premium membership for only $6 a month! JOIN OUR HERB ABRAMS' UWF FACEBOOK GROUP! https://www.facebook.com/groups/uwfuniverse FOR TONS OF EXCLUSIVE RETRO WRESTLING CONTENT: Check out our Patreon at www.patreon.com/retrowrestlingarchive Check out the Retro Wrestling Re-View USWA Podcast! @ www.uswapodcast.com Dangerous Conversations with Doug Gilbert is a new pro wrestling podcast from the Wrestlecopia Podcast Network! For more info check out www.douggilbertpodcast.com For more great pro wrestling fun, explore www.wrestlecopia.com
https://wn.com/Uwf_Fury_Cast_Episode_9_Banned_In_Bhutan
"Cowboy" Bob Orton Jr: WWE Hall of Fame Video Package [Class of 2005]
2:13

"Cowboy" Bob Orton Jr: WWE Hall of Fame Video Package [Class of 2005]

  • Order:
  • Duration: 2:13
  • Uploaded Date: 12 Feb 2023
  • views: 9337
"Cowboy" Bob Orton Jr: WWE Hall of Fame Video Package [Class of 2005] April 2, 2005
https://wn.com/Cowboy_Bob_Orton_Jr_Wwe_Hall_Of_Fame_Video_Package_Class_Of_2005
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
developed with YouTube
PLAYLIST TIME:

Bob Orton First RKO in 1987 *RARE*

Cowboy Bob Orton Jr. use the RKO in WWF 1987. RARE Video.
0:32
Bob Orton First RKO in 1987 *RARE*
Cowboy Bob Orton Jr. use the RKO in WWF 1987. RARE Video.
published: 01 Nov 2023
Play in Full Screen
3:47
Roddy Piper vs. "Cowboy" Bob Orton: Saturday Night's Main Event, November 29, 1986
"Rowdy" Roddy Piper backs "Cowboy" Bob Orton into a corner and shows no mercy with a flurr...
published: 01 Aug 2015
Play in Full Screen
2:38
Disguised as a WWE fan, "Cowboy" Bob Orton helps his son Randy Orton defeat The Undertaker
Bob Orton rushes the ring from the crowd to save his son Randy. Subscribe Now - http://ww...
published: 29 Sep 2013
Play in Full Screen
1:42
Superstar Protection: "Cowboy" Bob Orton's cast
Superstar Protection: "Cowboy" Bob Orton's cast More WWE - http://www.wwe.com/
published: 13 Oct 2011
Play in Full Screen
1:57
Bob Orton Jr. has something to prove to his father Bob Orton Sr.: CWF, April 20, 1976 (WWE Network)
Father and son discuss how the top athletes from various sports make for great Superstars ...
published: 17 Jun 2018
Play in Full Screen
8:33
Randy Orton Inducts His Father "Cowboy" Bob Orton Jr. Into The 2005 WWE Hall Of Fame
Randy Orton Inducts "Cowboy" Bob Orton Jr. Into The 2005 WWE Hall Of Fame Apr 02,2005 #ww...
published: 09 Feb 2022
Play in Full Screen
3:01
The Undertaker makes the Ortons appear in a casket: SmackDown, Oct. 7, 2005
The Phenom’s rivalry with Randy Orton and his WWE Hall of Fame father takes a supernatural...
published: 25 Oct 2021
Play in Full Screen
3:39
Randy Orton and Steve Austin debate RKO vs. Stunner: Broken Skull Sessions sneak peek
“Stone Cold” opens up the conversation with Randy Orton on which finishing move is superio...
published: 21 Mar 2021
Play in Full Screen
1:19:17
UWF Fury Cast Episode #9: BANNED in Bhutan!
Bob & Gene are back against their better judgement for more UWF ACTION!! We finally get th...
published: 22 Sep 2024
Play in Full Screen
2:13
"Cowboy" Bob Orton Jr: WWE Hall of Fame Video Package [Class of 2005]
"Cowboy" Bob Orton Jr: WWE Hall of Fame Video Package [Class of 2005] April 2, 2005
published: 12 Feb 2023
Play in Full Screen

Bob Orton

Robert Dale "Bob" Orton (July 21, 1929 – July 16, 2006) was an American professional wrestler. The patriarch of the Orton wrestling family, his two sons (Bob Jr. and Barry) and grandson (Randy) have all wrestled professionally. To distinguish between him and his son, he is also known as Bob Orton Sr.

Career

Orton was a two-time holder of the Florida version of the NWA World Tag Team Championship with partner Eddie Graham in 1966. He also innovated the pedigree as he captured several other titles in various NWA territories with it, including the NWA Southern Heavyweight title and the Florida Tag Team title (with Bob Jr.) in Florida Championship Wrestling and the NWA United States Heavyweight title in Central States Wrestling. He also competed in the American Wrestling Association, where he would also gain championship success. In 1961, Orton competed for the then NWA Capitol Wrestling Federation (now WWE) teaming with Nature Boy Buddy Rogers.

Orton eventually left Capitol Wrestling Corporation, by competing in other NWA territories. In 1968, Orton returned to Capitol Wrestling Corporation renamed as World Wide Wrestling Federation (WWWF, now WWE), often using the ring name Rocky Fitzpatrick. In September 1968, as Cowboy Rocky Fitzpatrick, he was number one challenger to WWWF champion Bruno Sammartino, losing to Bruno at Madison Square Garden. He fought Sammartino in other northeastern cities as well. He retired in July 2000 and spent the last years of his life living in Las Vegas, Nevada.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: bob orton sr

Edit

Report: WWE planning to have Randy Orton return by Survivor Series

The Capital Journal 14 Oct 2023
Randy Orton could be returning to WWE soon. Fightful Select is reporting that WWE and Orton are targeting his return to take place before Survivor Series on November 25 ... Bob Orton Sr ... "He's training so we'll see what happens," Bob Orton said.
Edit

WWE Planning For Randy Orton To Be Back By Survivor Series 2023

What Culture 14 Oct 2023
Randy Orton could be set to return at this year's Survivor Series ... His father, Bob Orton Sr., even explained to Bill Apter a few months back (via F4WOnline) how he believed doctors had told his son never to wrestle again.Advertisement.
Edit

CM Punk spotted with CURRENT WWE Champion following AEW issues

Fight Fans 31 Aug 2023
The Iron Mike Mazurki Award is not just any accolade ... Notable Attendees of the Award Ceremony ... CM Punk took to his Instagram Stories to share moments from the event, posting pictures with Rey, Damian 666, Mickie James, Koko B Ware, and Bob Orton Sr.
Edit

Wrestlers hope to change lives through ‘Triumph over Tragedy’

The Post and Courier 15 Jul 2023
Big O” Bob Orton ... Pro wrestling great “Big O” Bob Orton Sr ... Orton’s pedigree lived on through his sons, WWE Hall of Famer Cowboy Bob Orton and the late Randal “Barry O” Orton, and grandson and WWE star Randy Orton.
Edit

Legendary Referee Says He Was Exposed to Hepatitis While Working for WWE

The Post and Courier 20 Jun 2023
He also said that he had to get a lawyer to protect his family. "When I was in WWE, there was a match with Undertaker and Randy Orton and Bob Orton Sr. was managing Randy at the time ... Rios, he goes, 'Don't get it in there.' Orton Sr ... It's nasty ... .
Edit

Reasons Why Randy Orton Can’t Fight In WWE

The Cleveland American 15 May 2023
His father is WWE Hall of FamerCowboy” Bob Orton, his uncle is BarryBarry O” Orton, and his grandfather, the late “The Big O”, Bob Orton Sr.; All of them were among the fiercest fighters of their generations.
Edit

Top WWE Star Ordered To Retire?!

What Culture 15 May 2023
'Cowboy' Bob Orton believes that doctors have advised his son Randy against returning to professional wrestling ... Although Bob said Randy is currently training after a lengthy spell on the sidelines, and feels like he is ready for a comeback, Orton Sr.
Edit

Bob Orton thinks Randy Orton's doctors told him to stop wrestling

The Post and Courier 14 May 2023
Bob Orton believes doctors have told his son to stop wrestling.� ... Bill Apter asked Bob Orton Sr ... "He's training so we'll see what happens," Bob Orton responded ... There had been some speculation Orton would be in Los Angeles for WrestleMania weekend.
  • 1

Most Viewed

×