exacttarget

AJAX call not firing after 5 keystrokes

北战南征 提交于 2019-12-25 14:00:30
问题 Why does this require more than 5 keystrokes before firing? $( document ).ready(function() { $("#zipcode").on("keyup", function(event) { // keyup function if(this.value.length == 5){ // if 5 time keyup then fire the ajax var zicpcode= $("#zipcode").val(); // get the value of zipcode $.ajax({ url: "http://pages.em.essilorusa.com/page.aspx?QS=773ed3059447707d2a7242227e94bba8efcc7ce6da09facd&zip="+zicpcode, type: "get", //send it through get method success: function(results) { var res = results

Is there any SOAP object available to pull journey information from marketing cloud?

半城伤御伤魂 提交于 2019-12-13 04:18:18
问题 I am trying to download the journey information from marketing cloud and understand how it's related to a _Job dataview. Is there any Object that directly pulls all journey related information using SOAP API calls? I have downloaded the _Journey dataview by querying it to a data extension, but I can not figure out how it's related to a _Job dataview. How can I connect the Journey information to the _Job dataview? Please help. Thanks in advance. 来源: https://stackoverflow.com/questions/54815433

Conditional Formatting in ExactTarget Personalized Subject Line

☆樱花仙子☆ 提交于 2019-12-08 11:03:38
问题 How can I setup conditional formatting using ExactTarget personalization? I want to only show the punctuation if the first name exists. For example, if name exists subject is NAME! Rest of Subject. but if the name field is blank then Rest of Subject. %% first_name %%! Rest of Subject. ends up returning ! Rest of Subject. if my first_name value is blank. 回答1: %%[ If Not Empty([first_name]) Or [first_name] != "" Then Set @salutation = Concat(ProperCase([first_name]),'! ') Else Set @salutation =