{"id":2340,"date":"2024-09-30T22:27:50","date_gmt":"2024-09-30T20:27:50","guid":{"rendered":"https:\/\/pavon.dk\/?page_id=2340"},"modified":"2024-10-07T14:44:12","modified_gmt":"2024-10-07T12:44:12","slug":"resultater","status":"publish","type":"page","link":"https:\/\/pavon.dk\/?page_id=2340","title":{"rendered":"Resultater"},"content":{"rendered":"\n\n<!-- F\u00f8rste dropdown: V\u00e6lg \u00e5rstal -->\n<label for=\"yearDropdown\">V\u00e6lg \u00e5rstal:<\/label>\n<select id=\"yearDropdown\">\n    <option value=\"\" disabled selected>V\u00e6lg et \u00e5r<\/option>\n    <option value=\"2024\">2024<\/option>\n    <option value=\"2023\">2023<\/option>\n    <option value=\"2022\">2022<\/option>\n    <option value=\"2021\">2021<\/option>\n    <option value=\"2020\">2020<\/option>\n<\/select>\n\n<!-- Anden dropdown: Udstillingsdatoer baseret p\u00e5 \u00e5rstal -->\n<label for=\"exhibitionDropdown\" style=\"display:none;\" id=\"exhibitionLabel\">V\u00e6lg udstilling:<\/label>\n<select id=\"exhibitionDropdown\" style=\"display:none;\">\n    <option value=\"\" disabled selected>V\u00e6lg en udstilling<\/option>\n<\/select>\n\n<!-- Iframe hvor resultatsiden bliver indl\u00e6st -->\n<iframe id=\"resultsFrame\" style=\"display:none; width: 100%; height: 600px; border: none;\"><\/iframe>\n\n<script>\n    \/\/ Data over udstillinger pr. \u00e5r med direkte URL'er\n    const exhibitions = {\n        '2024': [\n             { value: 'https:\/\/pavon.dk\/?page_id=3190', text: '25. maj 2024 \u2013 Br\u00f8rup Hallerne ' },\n             { value: 'https:\/\/pavon.dk\/?page_id=3187', text: '12. maj 2024 \u2013 Roskilde For\u00e5r \u2013 Cacib ' },\n             { value: 'https:\/\/pavon.dk\/?page_id=3181', text: '11. maj 2024 \u2013 Roskilde For\u00e5r \u2013 Cacib ' },\n             { value: 'https:\/\/pavon.dk\/?page_id=3173', text: '10. maj 2024 Roskilde For\u00e5r - Nordisk ' },\n             { value: 'https:\/\/pavon.dk\/?page_id=3142', text: '03. marts 2024 - Klubudstilling ' },\n             { value: 'https:\/\/pavon.dk\/?page_id=3166', text: '10. februar 2024 - International udstilling i Fredericia' },\n                     \n                    ],\n        '2023': [\n            { value: 'https:\/\/pavon.dk\/?page_id=2486', text: '12. november 2023 CACIB Herning ' },           \n            { value: 'https:\/\/pavon.dk\/?page_id=2482', text: '11. november 2023 CACIB Herning ' },            \n            { value: 'https:\/\/pavon.dk\/?page_id=2478', text: '24. september 2023 CACIB Roskilde ' },\n            { value: 'https:\/\/pavon.dk\/?page_id=2475', text: '23. september 2023 CACIB Roskilde ' },\n            { value: 'https:\/\/pavon.dk\/?page_id=2473', text: '22. september 2023 Nordisk udstilling Roskilde ' },\n            { value: 'https:\/\/pavon.dk\/?page_id=2471', text: '02. september 2023 Nordisk udstilling Horne Idr\u00e6tspark ' },\n            { value: 'https:\/\/pavon.dk\/?page_id=2467', text: '20. august 2023 Vejen CACIB ' },\n            { value: 'https:\/\/pavon.dk\/?page_id=2456', text: '19. august 2023 Vejen Nordisk udstilling ' },\n            { value: 'https:\/\/pavon.dk\/?page_id=2453', text: '18. august 2023 Vejen CACIB ' },\n            { value: 'https:\/\/pavon.dk\/?page_id=2449', text: '24. og 25. juni 2023 Bornholm CACIB ' },\n            { value: 'https:\/\/pavon.dk\/?page_id=2445', text: '03. juni 2023 Specialklub udstilling 2 i Kerteminde ' },\n            { value: 'https:\/\/pavon.dk\/?page_id=2443', text: '03. juni 2023 Specialklub udstilling 1 i Kerteminde ' },\n            { value: 'https:\/\/pavon.dk\/?page_id=2432', text: '18. maj 2023 Herning Agria Winner ' },\n            { value: 'https:\/\/pavon.dk\/?page_id=2419', text: '18. maj 2023 Herning EDS ' },\n            { value: 'https:\/\/pavon.dk\/?page_id=2411', text: '6. april 2023 Nordisk udstilling Nyk. Falster ' },\n            { value: 'https:\/\/pavon.dk\/?page_id=2404', text: '11. marts 2023 Specialklub udstilling i Broby ' },\n            { value: 'https:\/\/pavon.dk\/?page_id=2408', text: '11. februar 2023 International udstilling I Fredericia' },\n            ]\n    };\n\n    \/\/ H\u00e5ndterer valg af \u00e5rstal\n    document.getElementById('yearDropdown').addEventListener('change', function() {\n        const selectedYear = this.value;\n        const exhibitionDropdown = document.getElementById('exhibitionDropdown');\n        const exhibitionLabel = document.getElementById('exhibitionLabel');\n        const resultsFrame = document.getElementById('resultsFrame');\n\n        \/\/ Nulstil den anden dropdown og iframe\n        exhibitionDropdown.innerHTML = '<option value=\"\" disabled selected>V\u00e6lg en udstilling<\/option>';\n        resultsFrame.style.display = 'none';\n        resultsFrame.src = '';\n\n        if (exhibitions[selectedYear]) {\n            \/\/ G\u00f8r den anden dropdown synlig\n            exhibitionDropdown.style.display = 'inline-block';\n            exhibitionLabel.style.display = 'inline-block';\n\n            \/\/ Fyld den anden dropdown med udstillinger baseret p\u00e5 det valgte \u00e5r\n            exhibitions[selectedYear].forEach(function(exhibition) {\n                const option = document.createElement('option');\n                option.value = exhibition.value;\n                option.text = exhibition.text;\n                exhibitionDropdown.appendChild(option);\n            });\n        } else {\n            exhibitionDropdown.style.display = 'none';\n            exhibitionLabel.style.display = 'none';\n        }\n    });\n\n    \/\/ H\u00e5ndterer valg af udstilling og viser resultat i iframe\n    document.getElementById('exhibitionDropdown').addEventListener('change', function() {\n        const selectedExhibition = this.value;\n        const resultsFrame = document.getElementById('resultsFrame');\n        if (selectedExhibition) {\n            \/\/ Vis iframe og indl\u00e6s den valgte URL\n            resultsFrame.style.display = 'block';\n            resultsFrame.src = selectedExhibition;\n        }\n    });\n<\/script>\n\n\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>V\u00e6lg \u00e5rstal: V\u00e6lg et \u00e5r20242023202220212020 V\u00e6lg udstilling: V\u00e6lg en udstilling<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"ocean_post_layout":"left-sidebar","ocean_both_sidebars_style":"","ocean_both_sidebars_content_width":0,"ocean_both_sidebars_sidebars_width":0,"ocean_sidebar":"ocs-pointjagt","ocean_second_sidebar":"","ocean_disable_margins":"enable","ocean_add_body_class":"","ocean_shortcode_before_top_bar":"","ocean_shortcode_after_top_bar":"","ocean_shortcode_before_header":"","ocean_shortcode_after_header":"","ocean_has_shortcode":"","ocean_shortcode_after_title":"","ocean_shortcode_before_footer_widgets":"","ocean_shortcode_after_footer_widgets":"","ocean_shortcode_before_footer_bottom":"","ocean_shortcode_after_footer_bottom":"","ocean_display_top_bar":"default","ocean_display_header":"default","ocean_header_style":"","ocean_center_header_left_menu":"","ocean_custom_header_template":"","ocean_custom_logo":0,"ocean_custom_retina_logo":0,"ocean_custom_logo_max_width":0,"ocean_custom_logo_tablet_max_width":0,"ocean_custom_logo_mobile_max_width":0,"ocean_custom_logo_max_height":0,"ocean_custom_logo_tablet_max_height":0,"ocean_custom_logo_mobile_max_height":0,"ocean_header_custom_menu":"","ocean_menu_typo_font_family":"","ocean_menu_typo_font_subset":"","ocean_menu_typo_font_size":0,"ocean_menu_typo_font_size_tablet":0,"ocean_menu_typo_font_size_mobile":0,"ocean_menu_typo_font_size_unit":"px","ocean_menu_typo_font_weight":"","ocean_menu_typo_font_weight_tablet":"","ocean_menu_typo_font_weight_mobile":"","ocean_menu_typo_transform":"","ocean_menu_typo_transform_tablet":"","ocean_menu_typo_transform_mobile":"","ocean_menu_typo_line_height":0,"ocean_menu_typo_line_height_tablet":0,"ocean_menu_typo_line_height_mobile":0,"ocean_menu_typo_line_height_unit":"","ocean_menu_typo_spacing":0,"ocean_menu_typo_spacing_tablet":0,"ocean_menu_typo_spacing_mobile":0,"ocean_menu_typo_spacing_unit":"","ocean_menu_link_color":"","ocean_menu_link_color_hover":"","ocean_menu_link_color_active":"","ocean_menu_link_background":"","ocean_menu_link_hover_background":"","ocean_menu_link_active_background":"","ocean_menu_social_links_bg":"","ocean_menu_social_hover_links_bg":"","ocean_menu_social_links_color":"","ocean_menu_social_hover_links_color":"","ocean_disable_title":"default","ocean_disable_heading":"default","ocean_post_title":"","ocean_post_subheading":"","ocean_post_title_style":"","ocean_post_title_background_color":"","ocean_post_title_background":0,"ocean_post_title_bg_image_position":"","ocean_post_title_bg_image_attachment":"","ocean_post_title_bg_image_repeat":"","ocean_post_title_bg_image_size":"","ocean_post_title_height":0,"ocean_post_title_bg_overlay":0.5,"ocean_post_title_bg_overlay_color":"","ocean_disable_breadcrumbs":"default","ocean_breadcrumbs_color":"","ocean_breadcrumbs_separator_color":"","ocean_breadcrumbs_links_color":"","ocean_breadcrumbs_links_hover_color":"","ocean_display_footer_widgets":"default","ocean_display_footer_bottom":"default","ocean_custom_footer_template":"","footnotes":""},"categories":[32],"tags":[],"class_list":["post-2340","page","type-page","status-publish","hentry","category-resultater","entry"],"_links":{"self":[{"href":"https:\/\/pavon.dk\/index.php?rest_route=\/wp\/v2\/pages\/2340","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pavon.dk\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/pavon.dk\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/pavon.dk\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pavon.dk\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2340"}],"version-history":[{"count":72,"href":"https:\/\/pavon.dk\/index.php?rest_route=\/wp\/v2\/pages\/2340\/revisions"}],"predecessor-version":[{"id":3193,"href":"https:\/\/pavon.dk\/index.php?rest_route=\/wp\/v2\/pages\/2340\/revisions\/3193"}],"wp:attachment":[{"href":"https:\/\/pavon.dk\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2340"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pavon.dk\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2340"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pavon.dk\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2340"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}