<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:wfw="http://wellformedweb.org/CommentAPI/"
     xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:atom="http://www.w3.org/2005/Atom"
     xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
     xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    >

<channel>
    <title>TravMagazine</title>
    <atom:link href="https://www.travmagazine.nl/adverteren/feed/" rel="self" type="application/rss+xml"/>
    <link>https://www.travmagazine.nl/adverteren/</link>
    <description>Het grootste reisvakblad van Nederland</description>
    <lastBuildDate>Tue, 04 Aug 2026 11:31:28 +0000</lastBuildDate>
    <language>nl-NL</language>
    <yeartag>2026</yeartag>

    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>

    <generator>https://wordpress.org/?v=7.0.2</generator>

<image>
	<url>https://www.travmagazine.nl/wp-content/uploads/2020/12/cropped-cropped-TravMagazine-1-32x32.png</url>
	<title>Adverteren - TravMagazine</title>
	<link>https://www.travmagazine.nl/adverteren/</link>
	<width>32</width>
	<height>32</height>
</image> 

    
        <item>

                        <title>Adverteren</title>

            <link>https://www.travmagazine.nl/adverteren/</link>
            <comments>https://www.travmagazine.nl/adverteren/#respond</comments>

            <pubDate>Thu, 08 May 2014 13:28:59 +0000</pubDate>

            <dc:creator><![CDATA[TJ van Apeldoorn]]></dc:creator>

            
            <guid isPermaLink="false">https://www.travmagazine.nl/?page_id=2593</guid>

            
            <description><![CDATA[
Media-kit Bekijk hier onder onze mediakit met daarin het totale portfolio van TRAVel Media. &nbsp; Wilt u informatie ontvangen over de mogelijkheden om te adverteren, onze tarieven, het publicatieschema of andere zaken? Stuur dan a.u.b. een e-mail naar sales@travmedia.nl en U wordt z.s.m. geholpen door een van onze sales managers! If you have any questions &hellip; Lees verder            ]]></description>

            
            <content:encoded><![CDATA[

Media-kit Bekijk hier onder onze mediakit met daarin het totale portfolio van TRAVel Media.







//----------------------------------------------------------
//------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------
//----------------------------------------------------------

if ( ! gform ) {
	document.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );
	document.addEventListener( 'gform/theme/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );
	window.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );

	var gform = {
		domLoaded: false,
		scriptsLoaded: false,
		themeScriptsLoaded: false,
		isFormEditor: () => typeof InitializeEditor === 'function',

		/**
		 * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.
		 * @remove-in 4.0 this function will not check for gform.isFormEditor().
		 */
		callIfLoaded: function ( fn ) {
			if ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {
				if ( gform.isFormEditor() ) {
					console.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );
				}
				fn();
				return true;
			}
			return false;
		},

		/**
		 * Call a function when all scripts are loaded
		 *
		 * @param function fn the callback function to call when all scripts are loaded
		 *
		 * @returns void
		 */
		initializeOnLoaded: function( fn ) {
			if ( ! gform.callIfLoaded( fn ) ) {
				document.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );
				document.addEventListener( 'gform/theme/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );
				window.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );
			}
		},

		hooks: { action: {}, filter: {} },
		addAction: function( action, callable, priority, tag ) {
			gform.addHook( 'action', action, callable, priority, tag );
		},
		addFilter: function( action, callable, priority, tag ) {
			gform.addHook( 'filter', action, callable, priority, tag );
		},
		doAction: function( action ) {
			gform.doHook( 'action', action, arguments );
		},
		applyFilters: function( action ) {
			return gform.doHook( 'filter', action, arguments );
		},
		removeAction: function( action, tag ) {
			gform.removeHook( 'action', action, tag );
		},
		removeFilter: function( action, priority, tag ) {
			gform.removeHook( 'filter', action, priority, tag );
		},
		addHook: function( hookType, action, callable, priority, tag ) {
			if ( undefined == gform.hooks[hookType][action] ) {
				gform.hooks[hookType][action] = [];
			}
			var hooks = gform.hooks[hookType][action];
			if ( undefined == tag ) {
				tag = action + '_' + hooks.length;
			}
			if( priority == undefined ){
				priority = 10;
			}

			gform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );
		},
		doHook: function( hookType, action, args ) {

			// splice args from object into array and remove first index which is the hook name
			args = Array.prototype.slice.call(args, 1);

			if ( undefined != gform.hooks[hookType][action] ) {
				var hooks = gform.hooks[hookType][action], hook;
				//sort by priority
				hooks.sort(function(a,b){return a["priority"]-b["priority"]});

				hooks.forEach( function( hookItem ) {
					hook = hookItem.callable;

					if(typeof hook != 'function')
						hook = window[hook];
					if ( 'action' == hookType ) {
						hook.apply(null, args);
					} else {
						args[0] = hook.apply(null, args);
					}
				} );
			}
			if ( 'filter'==hookType ) {
				return args[0];
			}
		},
		removeHook: function( hookType, action, priority, tag ) {
			if ( undefined != gform.hooks[hookType][action] ) {
				var hooks = gform.hooks[hookType][action];
				hooks = hooks.filter( function(hook, index, arr) {
					var removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);
					return !removeHook;
				} );
				gform.hooks[hookType][action] = hooks;
			}
		}
	};
}


                
                        Voor- en achternaam*Bedrijfsnaam*E-mail*Telefoonnummer*Ik wil graag meer weten over:
								
								Print advertising
							
								
								Online advertising
							
								
								Events
							
								
								E-learning
							
								
								Verkiezing(en)
							Taal:
								
								Nederlands
							
								
								Engels
							
         Versturen 
            
            
            
            
            
            
            
            
            
            
            
            
            
        
                        
                        


&nbsp;







Wilt u informatie ontvangen over de mogelijkheden om te adverteren, onze tarieven, het publicatieschema of andere zaken? Stuur dan a.u.b. een e-mail naar sales@travmedia.nl en U wordt z.s.m. geholpen door een van onze sales managers!



If you have any questions regarding advertising possibilities, our rates, the schedule are any other matter please send an e-mail to sales@travmedia.nl and we will contact you as soon as possible.



MailingWij sturen met enige regelmaat een digitale mailing, waarin wij de onderwerpen van onze Specials bekend maken voor de volgende maand en andere interessante mogelijkheden voor u. Wilt u op de hoogte blijven van interessante mogelijkheden om uw product onder de aandacht te brengen? Mail dan naar sales@travmedia.nl.



Bekijk hier onze Algemene voorwaarden.



Zie Privacyverklaring TRAVel Media.
The post Adverteren appeared first on TravMagazine.
            ]]></content:encoded>

            
            <wfw:commentRss>https://www.travmagazine.nl/adverteren/feed/</wfw:commentRss>
            <slash:comments>0</slash:comments>

                        
        </item>

    
</channel>
</rss>