Coder Social home page Coder Social logo

Comments (2)

magestyx avatar magestyx commented on August 22, 2024

Actually, I realized after I posted that the ECS_do_action will help here - code is below and it does now load these missing images.
However, it'd be great to have the URLencoding method fixed, otherwise we'd have to do one of these search/replaces for every special character that could be used.

function ECS_correct_urlencoding(args){
jQuery(".elementor-section").each(function(){
var oldUrl = jQuery(this).css("background-image"); // Get current url
var newUrl = oldUrl.replace("©", "%C2%A9"); // Create new url
jQuery(this).css("background-image", newUrl); // Set value
});
}

jQuery( document ).ready(function() {
ECS_add_action("ajax", function(args){ECS_correct_urlencoding(args)});
});

from ele-custom-skin.

magestyx avatar magestyx commented on August 22, 2024

Note that in the code I just posted, github is encoding the copyright symbol.
In the raw code it's the standard code like below with no spaces:
& copy ;

from ele-custom-skin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.