Hispanic Business TVHispanic Business TV
  • Featured
  • Popular Cities
    • Atlanta
    • Boston
    • Chicago
    • Dallas
    • Denver
    • Houston
    • Las Vegas
    • Los Angeles
    • Miami
    • New York
    • Phoenix
    • Salt Lake City
    • San Antonio
  • Business
    • HBTV Toolbox
      • Social Media Management
  • Politics
  • HBTV Sports
    • MLB
    • MMA
    • NCAAF
    • NBA
    • NCAAM
    • NFL
    • NHL
  • Entertainment
  • Living
    • Culture
    • Latino Lifestyle
    • Education
    • Cannabis
Reading: River City Cluster of Dog Shows coming to San Antonio this weekend | San Antonio
Share
Sign In
Notification Show More
Font ResizerAa
Font ResizerAa
Hispanic Business TVHispanic Business TV
Search
  • Featured
  • Popular Cities
    • Atlanta
    • Boston
    • Chicago
    • Dallas
    • Denver
    • Houston
    • Las Vegas
    • Los Angeles
    • Miami
    • New York
    • Phoenix
    • Salt Lake City
    • San Antonio
  • Business
    • HBTV Toolbox
  • Politics
  • HBTV Sports
    • MLB
    • MMA
    • NCAAF
    • NBA
    • NCAAM
    • NFL
    • NHL
  • Entertainment
  • Living
    • Culture
    • Latino Lifestyle
    • Education
    • Cannabis
Have an existing account? Sign In
Follow US
© 2024 hispanicbusinesstv All Rights Reserved.
Hispanic Business TV > San Antonio > River City Cluster of Dog Shows coming to San Antonio this weekend | San Antonio
San Antonio

River City Cluster of Dog Shows coming to San Antonio this weekend | San Antonio

HBTV
Last updated: July 9, 2024 1:17 am
HBTV
Share
7 Min Read
French Bulldog On Local National Club Dog Show Russia Moscow 2020.jpg
SHARE

Admission is free for the canine competition.


Wikimedia Commons / Maria Tsveshko

Which doggo will reign supreme? Sit, stay and find out.

In pawsuit of pooch perfection, an event billed as one of the nation's most popular dog shows is coming to San Antonio this weekend.

The River City Cluster of Dog Shows will take over the Freeman Coliseum July 12-14 with a series of canine competitions.

Exhibitors and competitors from around the world will converge on the Alamo City to determine which doggos have the pedigree, grooming and discipline to take home the blue ribbon in categories including Hound Group, Toy Group, Sporting Group and Best in Show.

This event is hosted by Bexar County Kennel Club. Admission to the show is free, but parking will set fanciers back 15 bones.

It's anyone's guess which canine will win. However, those who believe in the gospel of the mockumentary Best in Show know "God loves a terrier."

')
let lineHeight = jQuery('[line-height-check]').get(0).clientHeight;
jQuery('[line-height-check]').remove()
if (jQuery(element).prop('tagName').match(/HIDDEN/i) !== null) {
jQuery(element).children('div').last().css({ marginBottom: `${lineHeight*2}px` });
}
else {
jQuery(element).css({
marginTop: `${lineHeight*2}px`,
marginBottom: `${lineHeight}px`
});
}
//
const insertionBlockClass = `fdn-paragraph-insertion-block`;
const styleElementHook = `fdn-paragraph-insertion-styles`;

jQuery(element).addClass(insertionBlockClass);

if (jQuery(`[${styleElementHook}]`).length === 0) {
jQuery('div.fdn-content-body, div #storyBody').append('

 

')
const paragraphLineHeight = jQuery('[line-height-check]').get(0).clientHeight;
jQuery('[line-height-check]').remove()

const styleElement = jQuery(``);
const styleText = `
div.fdn-content-body br+.${insertionBlockClass}:not([hidden]),
div #storyBody br+.${insertionBlockClass}:not([hidden]) {
margin-top: ${paragraphLineHeight*2}px;
margin-bottom: ${paragraphLineHeight}px;
}

div.fdn-content-body br+.${insertionBlockClass}[hidden] > div:last-of-type,
div #storyBody br+.${insertionBlockClass}[hidden] > div:last-of-type {
margin-bottom: ${paragraphLineHeight*2}px;
}
`
styleElement.text(styleText);
jQuery('head').append(styleElement);
}
//

}
}
jQuery(element).insertBefore(this.paragraphEndNodes[index]);
}
else {
console.warn('Foundation.ParagraphTool.insertElemenAt: invalid insertion index', index);
}
}

this.insertElemenAtEnd = function (element) {
if (this.paragraphEndNodes.length) {

let lastNode = this.getNodeAtIndex(this.paragraphEndNodes.length -1);
if (this.isDoubleBrParagraphBreak(lastNode)
|| this.isBrParagraphBreakBeforeBlockElement(lastNode)) {
if (jQuery(element).get(0).tagName.match(/SCRIPT/i) !== null) {
jQuery('
').insertAfter(this.paragraphEndNodes[index]);
jQuery('
').insertAfter(this.paragraphEndNodes[index]);
}
else {
jQuery('div.fdn-content-body, div #storyBody').append('

 

')
let lineHeight = jQuery('[line-height-check]').get(0).clientHeight;
jQuery('[line-height-check]').remove()
if (jQuery(element).prop('tagName').match(/HIDDEN/i) !== null) {
jQuery(element).children('div').last().css({ marginBottom: `${lineHeight*2}px` });
}
else {
jQuery(element).css({
marginTop: `${lineHeight*2}px`,
marginBottom: `${lineHeight}px`
});
}
}
}
}
this.bodyContainer.append(element);
}

this.getNodeAtIndex = function (index) {
return this.paragraphEndNodes[index];
}
}

`);
}
var paragraphCount = myParagraphTool.getParagraphEndNodeCount();
// No need to insert if there aren't enough paragaphs
if (paragraphCount >= parseInt(item.requiredCountToDisplay)) {
// Matches specific paragraph insertion indexes
if (item.insertPoint.match(/^d+$/) !== null) {
var insertIndex = parseInt(item.insertPoint) - 1;
// Insert within content
if (insertIndex < paragraphCount) {
myParagraphTool.insertElemenAtIndex(componentElement, insertIndex);
}
// Append to the end if the insert point is beyond the paragraph count
else {
myParagraphTool.insertElemenAtEnd(componentElement)
}
}
// Matches for 1/2, 1/4, 2/3, 5/6, etc
else if (item.insertPoint.match(/^[1223456]/[23456]$/) !== null) {
var fractionMatch = new RegExp(/^([123456])(?:/)([23456]$)/);
var fractionPart = parseInt(item.insertPoint.match(fractionMatch)[1]);
var fractionWhole = parseInt(item.insertPoint.match(fractionMatch)[2]);
var fractionValue = fractionPart / fractionWhole;
var fractionIndex = Math.floor(myParagraphTool.paragraphEndNodes.length * fractionValue) - 1;
myParagraphTool.insertElemenAtIndex(componentElement, fractionIndex);
}
// Matches for every Nth insertion point
else if (item.insertPoint.match(/^d*th$/i) !== null) {
var intervalIndex = parseInt(item.insertPoint.match(/^(d*)th$/i)[1]);
var startingIndex = parseInt(item.startingPoint) - 1;
var insertionMax = parseInt(item.maxInsertions) || 100;
var insertionCount = 0;

for (var i = startingIndex; i < myParagraphTool.paragraphEndNodes.length && insertionCount < insertionMax; i++) {
if ((i - startingIndex) % intervalIndex === 0) {
let currentNode = myParagraphTool.getNodeAtIndex(i);
const clonedComponent = componentElement.clone();
myParagraphTool.insertElemenAtIndex(clonedComponent, i);
insertionCount++;
}
}
}
}
});
Foundation.Content['35003167'].setupInlineComponents = function () { return true; };
if (typeof callback === 'function') {
callback();
}
}, 200);
}

Foundation.Content['35003167'].previewInsertionPoints = function () {
var myParagraphTool = Foundation.Content['35003167'].paragraphTool
myParagraphTool.paragraphEndNodes.each((index, item) => {
const insertionPointPlaceholder = jQuery(`

Insertion point ${index+1}

`)
myParagraphTool.insertElemenAtIndex(insertionPointPlaceholder, index);
});
return 'Paragraph insertion placeholders applied.';
}

San Antonio Current

KEEP SA CURRENT!

Since 1986, the SA Current has served as the free, independent voice of San Antonio, and we want to keep it that way.

Becoming an SA Current Supporter for as little as $5 a month allows us to continue offering readers access to our coverage of local news, food, nightlife, events, and culture with no paywalls.

Join today to keep San Antonio Current.

Scroll to read more San Antonio News articles

Join SA Current Newsletters

Subscribe now to get the latest news delivered right to your inbox.

', 'fetching') },
success: function (data) {
// console.log(data.result, data.error, data)
if (data) {
if (data.error) {
// presentResult('Trouble loading content.', 'error')
}
else if (data.result) {
if (typeof Foundation.Content === 'undefined') {
presentResult(data.result, 'remove');
}
else {
presentResult(data.result, 'remove', () => {
// Foundation.Content[contentOid].setupInlineComponents();
if (Foundation.Image.Editor && typeof Foundation.Image.Editor.setupEditButtons === 'function') {
Foundation.Image.Editor.setupEditButtons();
}
});
}

}
else {
// presentResult('How did we get here?', 'error')
}
}
else {
// presentResult('No result or error returned from content request.', 'error')
}
},
complete: function () {
cmInstance.queue.push(fetchUnloadedItems);
},
error: function (error) {
// presentResult('Ajax request error.', 'error')
}
})
}
}

cmInstance.queue.push(fetchUnloadedItems)

jQuery(document).on('scroll resize', function () {
// Prevent rapid firing of event stuff
clearTimeout(onScrollTimeout)
onScrollTimeout = setTimeout(function() {
// console.log('Foundation.MultiItem onScroll event')
updateFurthestDownInView()
}, 100);
})

jQuery(document).on('foundation:multiitem:itemchange', function () {
// Prevent rapid firing of event stuff
clearTimeout(onItemChangeTimeout)
onItemChangeTimeout = setTimeout(function() {
// console.log('Foundation.MultiItem foundation:multiitem:itemchange event ')
cmInstance.onItemChange()
}, 100);
})
};

Foundation.MultiItems = Foundation.MultiItems || {
add: function (multiItem) {
Foundation.MultiItems[multiItem.id] = multiItem;
}
};

Foundation.MultiItems.add(new Foundation.MultiItem({
id: 'ContentRowMultiple',
onItemChange: function () {
if (this.currentPermaLink) {
var state = {}
var title=""
var url = this.currentPermaLink
history.pushState(state, title, url)
}
if (this.currentCanonical) {
document.querySelector('meta[property*=og\:url]').href = this.currentCanonical
document.querySelector('link[rel*=canonical]').href = this.currentCanonical
}
if (this.currentThumb) {
document.querySelector('link[rel*=image_src]').href = this.currentThumb
document.querySelector('meta[name*=thumbnail]').content = this.currentThumb
document.querySelector('meta[property*=og\:image]').content = this.currentThumb
document.querySelector('meta[name*=twitter\:image]').content = this.currentThumb
}
if (this.currentTitle) {
document.querySelector('title').text = this.currentTitle
}

// Google track pageview
if (typeof ga === 'function') {
ga('set', 'location', window.location.href)
for (let i = 1; i <= 4; i++) {
let currentDimension = jQuery(Foundation.MultiItems["ContentRowMultiple"].currentItem).attr('ga-dimension'+i)
if (typeof currentDimension === 'string') {
ga('set', 'dimension' + i, currentDimension)
}
else {
ga('set', 'dimension' + i, '')
}
}
ga('send', 'pageview')
}

if (typeof (Foundation.Ad.slots['_LeaderboardHeader-1']) === 'object' && !false) {
Foundation.Ad.refresh('_LeaderboardHeader-1')
}

if (typeof (Foundation.Ad.slots['_Footer-1']) === 'object') {
Foundation.Ad.showFooter('_Footer-1');
}
}
}))

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.

By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Copy Link Print
Share
Previous Article Ucsiwrneafh7fbvvjs3aisjeey.jpg Atlanta school board unanimously approves new superintendent to lead APS
Next Article 08themorning Nl 01 Vqzw Facebookjumbo V2.jpg A Remarkable Comeback – The New York Times
Leave a Comment Leave a Comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Stay Connected

FacebookLike
XFollow
InstagramFollow
- Advertisement -
Ad imageAd image

Latest News

New Anthem sign regulations | City News
Phoenix
May 10, 2026
AOC Shouldn’t Run For President
Latino Lifestyle
May 10, 2026
Texans founder’s former penthouse mansion hits market for $11M
Houston
May 10, 2026
Mercury blow out Aces in season opener
Las Vegas
May 10, 2026

Advertise

  • Advertise With Us
  • Terms and Conditions
  • Privacy Policy
  • About Us
  • Contact

HispanicBusinessTV is your go-to source for the latest in Latino lifestyle, culture, and business news. Stay informed and inspired with our comprehensive coverage and in-depth stories.

Quick links

  • Advertise With Us
  • Terms and Conditions
  • Privacy Policy
  • About Us
  • Contact

Top Categories

  • Business
  • HBTV Sports
  • Entertainment
  • Culture

Sign Up for Our Newsletter

Subscribe to our newsletter to get our newest articles instantly!

© 2025 HispanicBusinessTV.com All Rights Reserved. A WooWho Network Digital Property.
Join Us!
Subscribe to our newsletter and never miss our latest news, podcasts etc..

Zero spam, Unsubscribe at any time.
Welcome Back!

Sign in to your account

Username or Email Address
Password

Lost your password?