// JavaScript Document jQuery(document).ready(function($) { init_odds_widgets_preview_holder(); // sport select change $('.odds_widget_sport_select').live('change', function() { var d = $(this).parents('.odds_widgets_settings_form'); var sport_name = $(this).val(); resetWidgetTypeSelect(d); if(sport_name != 0) { $('.widget_type_select_holder', d).html('').addClass('ajax_loading vis'); var data = { action: 'odds_widgets_refresh_widget_type', sport_name: sport_name, item_id: $(this).attr('id'), item_name: $(this).attr('name') }; $.post(ajaxurl, data, function(response) { $('.widget_type_select_holder', d).removeClass('ajax_loading').html(''); if(response == 'FALSE') { alert("There was an error processing your request!\nPlease make sure you have selected a sport!"); } else { //alert($('.widget_type_select_holder', d).attr('class')); $('.widget_type_select_holder', d).html(response); } }); } }); // widget type select change $('.odds_widget_type_select').live('change', function() { var d = $(this).parents('.odds_widgets_settings_form'); resetWidgetSelect(d); var widget_type = $('.odds_widget_type_select', d).val(); if(widget_type != 0) { $('.widget_select_holder', d).html('').addClass('ajax_loading vis'); var data = { action: 'odds_widgets_refresh_widget', sport_name: $('.odds_widget_sport_select', d).val(), widget_type: widget_type, item_id: $(this).attr('id'), item_name: $(this).attr('name') }; $.post(ajaxurl, data, function(response) { $('.widget_select_holder', d).removeClass('ajax_loading').html(''); if(response == 'false') { alert('Please select a type of widget'); } else { $('.widget_select_holder', d).html(response); } }); } }); $('.odds_widget_style_select').live('change', function() { var d = $(this).parents('.odds_widgets_settings_form'); var style_id = $(this).val(); //updateWidgetDataWithCurrentSelectedStyle(style_id, d); }); // validate the widget save $('input.widget-control-save').click(function(e) { odds_widgets_close_preview(); var f = $(this).parents('form'); var data = odds_widgets_validate_widget_form(f); if(!data) { e.preventDefault(); return false; } }); // preview odds widget $('.odds_widget_preview').live('click', function(e){ e.preventDefault(); var f = $(this).parents('form'); var data = odds_widgets_validate_widget_form(f); if(data) { $('.preview_button_ajax', f).addClass('ajax_loading'); $.post(ajaxurl, data, function(response) { $('.preview_button_ajax', f).removeClass('ajax_loading'); if(response == 'FALSE') { alert('There was an error generating the preview!'); } else { $('.odds_widget_preview_holder_inner').html(response); $('.odds_widget_preview_holder_inner').append($('
')); $('.odds_widget_preview_holder').odds_widgets_center().show(); } }); } else { return false; } }) $('.odds_widgets_preview_close_button').live('click', function(){ odds_widgets_close_preview(); }); function odds_widgets_close_preview() { var di = $('.odds_widget_preview_holder_inner'); var d = $('.odds_widget_preview_holder'); di.html(''); d.hide(); } function odds_widgets_validate_widget_form(f) { var data = new Object(); var errors = ''; var data = { action: 'odds_widgets_preview_widget', sport_name: $('.odds_widget_sport_select', f).val(), widget_type: $('.odds_widget_type_select', f).val(), widget: $('.odds_widget_select', f).val(), style_id: $('.odds_widget_style_select', f).val() }; if(data.sport_name == 0 || data.sport_name == '') { errors += "You must select a sport\n"; } if(data.widget_type == 0 || data.widget_type == '') { errors += "You must select a widget type\n"; } if(data.widget == 0 || data.widget == '') { errors += "You must select a widget\n"; } if(data.style_id == 0 || data.style_id == '') { errors += "You must select a style for the widget\n"; } if(errors != '') { alert(errors); return false; } return data; } function resetWidgetTypeSelect(holder) { $('.widget_type_select_holder', holder).html(''); resetWidgetSelect(holder); } function resetWidgetSelect(holder) { $('.widget_select_holder', holder).html(''); } function initWidgetsStyleSamples() { var style_selects = $('.odds_widgets_settings_form .odds_widget_style_select'); var d = null; $(style_selects).each(function(i, n) { d = $(n).parents('.odds_widgets_settings_form'); updateWidgetDataWithCurrentSelectedStyle($(n).val(), d); }); } function updateWidgetDataWithCurrentSelectedStyle(style_id, style_sample_holder) { //if(style_id != null && box_styles["style_" + style_id] != null) { var style_key = 'style_' + style_id; var style = box_styles[style_key]; var str = ''; var hex_regexp = /^[a-f0-9]{6}$/gi; for(key in style){ var val = style[key]; val = val.replace('"', '"'); //alert(key + ' -- ' + val); if(val.match(hex_regexp)) { var input_id = '#' + key + '_input'; var sample_id = input_id.replace('_input', '_sample'); $(sample_id, style_sample_holder).css('backgroundColor', '#' + val); $(input_id).val(val); updateBoxItems(input_id, val, style_sample_holder); } else { $('#' + key).val(style[key]); updateOddsFormat(); if(key == 'show_box_title') { if(val == 0) { $('.affbox_title', style_sample_holder).css('display', 'none'); $('#show_box_title', style_sample_holder).attr('checked', false); $('.box_title_details', style_sample_holder).css('display', 'none'); } else { $('.affbox_title', style_sample_holder).css('display', 'block'); $('#show_box_title', style_sample_holder).attr('checked', true); $('.box_title_details', style_sample_holder).css('display', 'block'); } } if(key == 'box_title_font_family') { var fam = $('#' + key + ' :selected').text(); $('.affbox_title', style_sample_holder).css('fontFamily', fam); } else if(key == 'box_title_font_size') { $('.affbox_title', style_sample_holder).css('fontSize', val); } if(key == 'show_market_title') { if(val == 0) { $('.affbox_market_name', style_sample_holder).css('display', 'none'); $('#show_market_title', style_sample_holder).attr('checked', false); $('.market_title_details', style_sample_holder).css('display', 'none'); } else { $('.affbox_market_name', style_sample_holder).css('display', 'block'); $('#show_market_title', style_sample_holder).attr('checked', true); $('.market_title_details', style_sample_holder).css('display', 'block'); } } else if(key == 'market_title_font_family') { var fam = $('#' + key + ' :selected').text(); $('.affbox_market_name', style_sample_holder).css('fontFamily', fam); } else if(key == 'market_title_font_size') { $('.affbox_market_name', style_sample_holder).css('fontSize', val); } else if(key == 'odds_table_font_family') { var fam = $('#' + key + ' :selected').text(); $('.affbox_table tr th, .affbox_table tr td', style_sample_holder).css('fontFamily', fam); } else if(key == 'odds_table_font_size') { $('.affbox_table tr th, .affbox_table tr td', style_sample_holder).css('fontSize', val); } // bookie logo size settings if(key == 'bookie_logo_size') { switch_box_sizes(val); } // referral link settings if(key == 'show_box_referral_link') { $('.ab_ref_link a').text(style['box_referral_link_text']); if(val == 0) { $('.ab_ref_link', style_sample_holder).css('display', 'none'); $('#show_box_referral_link', style_sample_holder).attr('checked', false); $('.box_referral_link_details', style_sample_holder).css('display', 'none'); } else { $('.ab_ref_link', style_sample_holder).css('display', 'block'); $('#show_box_referral_link', style_sample_holder).attr('checked', true); $('.box_referral_link_details', style_sample_holder).css('display', 'block'); } } } } //} } function updateBoxItems(input_id, hex, style_sample_holder) { // box if(input_id == '#box_border_color_input') { $('.affbox_inner_div', style_sample_holder).css('borderColor', '#' + hex); } if(input_id == '#box_background_color_input') { $('.affbox_inner_div', style_sample_holder).css('backgroundColor', '#' + hex); } // box title if(input_id == '#box_title_color_input') { $('.affbox_title', style_sample_holder).css('color', '#' + hex); } else if(input_id == '#box_title_background_color_input') { $('.affbox_title', style_sample_holder).css('backgroundColor', '#' + hex); } // market title if(input_id == '#market_title_color_input') { $('.affbox_market_name', style_sample_holder).css('color', '#' + hex); } else if(input_id == '#market_title_background_color_input') { $('.affbox_market_name', style_sample_holder).css('backgroundColor', '#' + hex); } // odds table head if(input_id == '#odds_table_head_color_input') { $('.affbox_odds_table_head th', style_sample_holder).css('color', '#' + hex); } else if(input_id == '#odds_table_head_background_color_input') { $('.affbox_odds_table_head th', style_sample_holder).css('backgroundColor', '#' + hex); } // odd rows if(input_id == '#odd_row_color_input') { $('.affbox_odd td', style_sample_holder).css('color', '#' + hex); } else if(input_id == '#odd_row_background_color_input') { $('.affbox_odd td', style_sample_holder).css('backgroundColor', '#' + hex); } // even rows if(input_id == '#even_row_color_input') { $('.affbox_even td', style_sample_holder).css('color', '#' + hex); } else if(input_id == '#even_row_background_color_input') { $('.affbox_even td', style_sample_holder).css('backgroundColor', '#' + hex); } } function updateOddsFormat(style_sample_holder) { var format = $('#odds_table_odds_format', style_sample_holder).val(); $('.affbox_odds span.selected', style_sample_holder).removeClass('selected'); if(format == 'f') { $('span.fra', style_sample_holder).addClass('selected'); } else if(format == 'a') { $('span.ame', style_sample_holder).addClass('selected'); } else { $('span.dec', style_sample_holder).addClass('selected'); } } function switch_box_sizes(id) { $('#bookie_logo_size_' + id).attr("checked", 'checked'); $('div.bookie_logo_size_holder').removeClass('bookie_logo_size_holder_active'); $('#bookie_logo_size_holder_' + id).addClass('bookie_logo_size_holder_active'); var images = $('.affbox_bookie_logo img'); var val = 80; var w = 80; $.each(images, function(i, n) { var src = $(n).attr('src'); if(id == 2) { val = 40; w = 40; } else if(id == 3) { val = 54; w = 54; } var preg = /\/[\d]{1}[04]{1}(|b)\//; src = src.replace(preg, '/' + val + '/'); $(images[i]).attr('src', src); $('.affbox_bookie_logo').css('width:' + w + 'px;'); }); } function init_odds_widgets_preview_holder() { $('body').append($('
')); } }); jQuery.fn.odds_widgets_center = function() { this.css("position","absolute"); var top = ( jQuery(window).height() - this.height() ) / 2+jQuery(window).scrollTop(); if(top < 0) { top = 0; } //alert(jQuery(window).height() + ' - ' + jQuery(window).width() + ' - ' + jQuery(window).scrollLeft()); this.css("top", top + "px"); this.css("left", ( jQuery(window).width() - this.width() ) / 2+jQuery(window).scrollLeft() + "px"); return this; }

Wednesday, October 17, 2012

NFL Sunday October 21st

October 22nd:  Det turned things around last week in PHIL and this offense is starting to take off.  They have all the momentum heading into Chicago.  Chicago is going into a bye week and any momentum they had, has slowed down.  Chicago will be prepared for tonight's match up but I see them coming out rusty.  Det is 2-3 on the season not what we expected but they have yet to be blown out and 6.5 is way to many points to lay here.  We are going against the trend as CHI has owned this Det team.  Head to head CHI has won 7 of the last 8 SU, but the series is tied 4-4 ATS.  Det is 8-2 ATS in there last 10 games during the month of October.  Det has a similar passing offense as the packers due, who beat the bears early this year.  I look for Det to keep this close and take this late in the 4th quarter as they try and get there season turned around.

Key trends:
Detroit: 10-1 Over away off a road win
Chicago: 4-17 ATS off BB games scoring 25+ points

The total has gone over in 5 of the last 7

Det +6.5
Det +13.5 and over 40 (7pt teaser)


October 21st:  Not a good week for us in CFB.  Ohio State did nothing yesterday as we had this pick listed as our GOY pick.   We did end up hitting a 3 team teaser for very minimal but a win is a win.  Today I am not going to have any write ups I will just list my picks.  I have 2 picks I feel very comfortable in and like always I played a teaser, so here we go:

Dallas ML
Green Bay -5
Teaser:
Football - 423 Green Bay Packers +7½ for Game
Football - 425 Dallas Cowboys +11 for Game
Football - 432 New England Patriots +2½ for Game
Football - 433 Jacksonville Jaguars/Oakland Raiders under 56½ for Game

Lets try and get back on track this weekend.

October 20th:  UCON gets destroyed last night!  Clearly they didn't come to pay.  We do barely hit on the under by .5 but we will take it.  I had 2 small plays on the baseball game as we expected the Cards to lite up Zito and win the series at home.   So what happens....Zito tosses the game of his life, the Cards fail to score and loose 5-0.  We go 1-3 last night but we are going BIG TODAY!  I am releasing this pick for FREE TODAY due to the horrible night last night.  Get on this now!

OHIO STATE -18

I HAVE THIS GAME CAPPED AS A 30+ POINT BLOW OUT!

Thanks for visiting and if any questions or comments please hit me up on twitter or get at my email
playersbet.blogspot@gmail.com

October 19th:  So we push on the 49ers game last night, and we couldn't be happier.  The way things looked early we would be lucky to get out of there with a win.  Lets not talk about the safety call because I never seen anything like that in my life.  We look to move forward today as we have our second play rolling into tonight.  All we have left is UCON plus 11 to cover our parlay.  I also took as a member selection play with San Fran -.5 and under 50.5.  We look to go 2-0-1 before Sunday Fun Day starts.  Also remember our 10 point teaser is still alive as we had San Fran +3.  All we have left is Green Bay at +4.5 and New England -.5 to cash that big 10 point teaser play.  I will be making a couple of picks later and I have some outstanding member selection picks going Saturday and Sunday.  I will include the bonus Saturday Selections if you get on board for Sunday with us.

October 18th:  Tonight we have a big game as the 49ers host the Seahawks.  We have looked at this game all week from multiple angles and man what a tough one it is.  I like to follow one rule when it comes to wagering on or against SEA.  Take SEA at home and play aganist them on the road.  That's exactly what we did.  We are going to roll with the 49ers tonight as we see a double digit win here.  This is a big game for both teams and after the beat down the NYG delivered to the 49ers on Sunday this team is going to come out pissed!  Look for them to have heavy pressure on Wilson for all 4 quarters and for this rookie QB to show his true colors.  Quick fact after Jim Harbaugh has suffered a lost as the 49ers head coach he has given up less then 3pts per game and 0 TD's.  This should speak for it all tonight.

Documented Play:  49ers -7

Here we go...I told you I would be back
7pt Teaser:  San Fran -1 UCON plus 11 

October 17th:  Guys I just had my 1st pick of the weened and I'm really excited about it!  I am going to release it because I feel so good and I can smell the $$$$$ already!!  10 point teaser here it is:

San Fran +3 "7-0 ATS off a SU as a favorite"
Green Bay +4.5 "11-2 ATS off a road win"
New England -.5 "13-5 ATS vs a conference opponent"

After a very impressive Week in the NFL as we go 3-1 in our documented plays and 4-0 in our teaser plays We are looking for another amazing run.  7-1 run right now we are as hot as they come!  If it wasn't for college football on Saturday our bank roll would be looking very nice right now but we got greedy.  I have not yet made any selections yet but I wanted to post some key trends for everyone.

The Raiders are 11-0 ATS (+7.3 ppg) the week after a game in which they had at least 300 yards passing

The Cardinals are 0-13 ATS (-13.0 ppg) since December 29th, 2002 as a road dog when they are off a game in which they suffered at least four sacks, as long as they had at least 170 yards of total offense

Green Bay: 11-2 ATS off a road win
St. Louis: 19-8 Over off 3+ ATS wins

Washington: 6-0 Under as a road underodg of 3.5 to 7 points
NY Giants: 7-0 ATS off a win by 10+ points

Jacksonville: 12-3 Under vs. conference opponents
Oakland: 6-0 ATS off BB losses

I am really looking into the Oakland game and Packers as they should win easily.  

No comments:

Post a Comment