
{"id":34862,"date":"2024-07-17T11:16:52","date_gmt":"2024-07-17T11:16:52","guid":{"rendered":"https:\/\/www.sssb.se\/?page_id=34862"},"modified":"2024-07-17T11:20:02","modified_gmt":"2024-07-17T11:20:02","slug":"contact-mattias-carrass","status":"publish","type":"page","link":"https:\/\/www.sssb.se\/en\/contact-mattias-carrass\/","title":{"rendered":"Contact Mattias Carrass"},"content":{"rendered":"<script>\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 4.0 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gravity-theme gform-theme--no-framework' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_8' >\n                        <div class='gform_heading'>\n                            <p class='gform_description'><\/p>\n\t\t\t\t\t\t\t<p class='gform_required_legend'>&quot;<span class=\"gfield_required gfield_required_asterisk\">*<\/span>&quot; indicates required fields<\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_8'  action='\/en\/wp-json\/wp\/v2\/pages\/34862' data-formid='8' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_8' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_8_1\" class=\"gfield gfield--type-text gfield--input-type-text gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><!DOCTYPE html PUBLIC \"-\/\/W3C\/\/DTD HTML 4.0 Transitional\/\/EN\" \"http:\/\/www.w3.org\/TR\/REC-html40\/loose.dtd\">\n<html><body><label class=\"gfield_label gform-field-label\" for=\"input_8_1\"><span class=\"gform-field-label__text\">Name<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class=\"ginput_container ginput_container_text\"><input name=\"input_1\" id=\"input_8_1\" type=\"text\" value=\"\" placeholder=\"First and last name\" aria-required=\"true\" aria-invalid=\"false\" class=\"required  large\"><\/div><\/body><\/html>\n<\/div><div id=\"field_8_3\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><!DOCTYPE html PUBLIC \"-\/\/W3C\/\/DTD HTML 4.0 Transitional\/\/EN\" \"http:\/\/www.w3.org\/TR\/REC-html40\/loose.dtd\">\n<html><body><label class=\"gfield_label gform-field-label\" for=\"input_8_3\"><span class=\"gform-field-label__text\">E-mail<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class=\"ginput_container ginput_container_text\"><input name=\"input_3\" id=\"input_8_3\" type=\"text\" value=\"\" placeholder=\"E-mail\" aria-required=\"true\" aria-invalid=\"false\" class=\"required  large\"><\/div><\/body><\/html>\n<\/div><div id=\"field_8_4\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><!DOCTYPE html PUBLIC \"-\/\/W3C\/\/DTD HTML 4.0 Transitional\/\/EN\" \"http:\/\/www.w3.org\/TR\/REC-html40\/loose.dtd\">\n<html><body><label class=\"gfield_label gform-field-label\" for=\"input_8_4\"><span class=\"gform-field-label__text\">Subject<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class=\"ginput_container ginput_container_text\"><input name=\"input_4\" id=\"input_8_4\" type=\"text\" value=\"\" placeholder=\"Subject\" aria-required=\"true\" aria-invalid=\"false\" class=\"required  large\"><\/div><\/body><\/html>\n<\/div><div id=\"field_8_5\" class=\"gfield gfield--type-textarea gfield--input-type-textarea gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><!DOCTYPE html PUBLIC \"-\/\/W3C\/\/DTD HTML 4.0 Transitional\/\/EN\" \"http:\/\/www.w3.org\/TR\/REC-html40\/loose.dtd\">\n<html><body><label class=\"gfield_label gform-field-label\" for=\"input_8_5\"><span class=\"gform-field-label__text\">Your message<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class=\"ginput_container ginput_container_textarea\"><textarea name=\"input_5\" id=\"input_8_5\" placeholder=\"Write your message here\" aria-required=\"true\" aria-invalid=\"false\" rows=\"10\" cols=\"50\" class=\"required  textarea large\"><\/textarea><\/div><\/body><\/html>\n<\/div><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <button type='submit' id='gform_submit_button_8' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' >Send<\/button> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_8' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_8' id='gform_theme_8' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_8' id='gform_style_settings_8' value='{&quot;inputPrimaryColor&quot;:&quot;#204ce5&quot;}' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_8' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='8' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='xY1l9gm67g+RHpxepIeFH3U52092O+3Z7gXKQIPB9woICnd5wvGw9pxgK6Z8dg7qsvXLSxY8Hh7\/Ub6H2j8C3fm0LhLeA4j2Hp3TZ8PrN\/XzJt0=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_8' value='WyJ7XCJnZm9ybV9zdWJtaXNzaW9uX21ldGhvZFwiOltcImRkMTU1YTFmNDZmNGE3ZDU4YzZlMGI1NTZlYTRkMzQ0XCIsXCJiZWUzM2U0NjZkMzhjZTZkNzFmZThhNzY2M2ExZDAwMlwiXSxcImdmb3JtX3RoZW1lXCI6XCI4ZDE1ODg5OWEwOWQ1OWUxYjk4MjczMDcyYWQwOTRkNFwiLFwiZ2Zvcm1fc3R5bGVfc2V0dGluZ3NcIjpcImNiZDdmMjk1Y2QyZTU2NTNiOWRjODZjOTRjZTI1ODUxXCIsXCJmb3JtX2lkXCI6XCI1ZTY5YWU4MWNjYjA0ODMzNThjZWY0ZjBiZGI2ODUyZVwiLFwidXJsXCI6XCJmOWMxM2Y1ZWI3OTBhNDYwMWZjMDg5YTU4OWYzMWNjYlwiLFwic3RhdGVfdGltZXN0YW1wXCI6XCJlMDYyODg1Nzk5MGE3YTViMzFkMjEzY2VhOWUwMjhkMVwifSIsImNjM2YwM2ZjZDZkNzNlODY5ZmFmMTNjNTk1OGRjYjFkIiwxNzg2Mjg1NjIzXQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_8' id='gform_target_page_number_8' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_8' id='gform_source_page_number_8' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":7,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_monsterinsights_skip_tracking":false,"footnotes":"","_links_to":"","_links_to_target":""},"boendeform":[],"omrade":[],"class_list":["post-34862","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/www.sssb.se\/en\/wp-json\/wp\/v2\/pages\/34862","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sssb.se\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.sssb.se\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.sssb.se\/en\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sssb.se\/en\/wp-json\/wp\/v2\/comments?post=34862"}],"version-history":[{"count":2,"href":"https:\/\/www.sssb.se\/en\/wp-json\/wp\/v2\/pages\/34862\/revisions"}],"predecessor-version":[{"id":34868,"href":"https:\/\/www.sssb.se\/en\/wp-json\/wp\/v2\/pages\/34862\/revisions\/34868"}],"wp:attachment":[{"href":"https:\/\/www.sssb.se\/en\/wp-json\/wp\/v2\/media?parent=34862"}],"wp:term":[{"taxonomy":"boendeform","embeddable":true,"href":"https:\/\/www.sssb.se\/en\/wp-json\/wp\/v2\/boendeform?post=34862"},{"taxonomy":"omrade","embeddable":true,"href":"https:\/\/www.sssb.se\/en\/wp-json\/wp\/v2\/omrade?post=34862"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}