I am using the Supersized jQuery plugin and need to remove the last ma from the list of images so it works in IE. The Supersized plugin does not work in IE if there is a ma after the last image, this is a known issue.
I am using Business Catalyst, so this is not PHP.
This is how the list of images appear, with a trailing ma:
{image : 'melbourne.jpg'},{image : 'tunnel.jpg'},{image : 'building.jpg'},
What would be the best way to do this?
jQuery(function($){
$.supersized({
slide_interval : 3000,
transition : 1,
transition_speed : 700,
slides : [ // Slideshow Images
{module_webapps,9198,a template="/Layouts/WebApps/slide.tpl"}
]
});
});
And this is what /Layouts/WebApps/slide.tpl looks like. Basically just looping through the slider images...
{image : '{tag_bg image_value}'},
I am using the Supersized jQuery plugin and need to remove the last ma from the list of images so it works in IE. The Supersized plugin does not work in IE if there is a ma after the last image, this is a known issue.
I am using Business Catalyst, so this is not PHP.
This is how the list of images appear, with a trailing ma:
{image : 'melbourne.jpg'},{image : 'tunnel.jpg'},{image : 'building.jpg'},
What would be the best way to do this?
jQuery(function($){
$.supersized({
slide_interval : 3000,
transition : 1,
transition_speed : 700,
slides : [ // Slideshow Images
{module_webapps,9198,a template="/Layouts/WebApps/slide.tpl"}
]
});
});
And this is what /Layouts/WebApps/slide.tpl looks like. Basically just looping through the slider images...
{image : '{tag_bg image_value}'},
Share
Improve this question
edited Sep 27, 2013 at 1:04
user537137
asked Sep 27, 2013 at 0:44
user537137user537137
6142 gold badges10 silver badges24 bronze badges
2
- The question is not clear, what ma? What string? Why doesn't it work in IE? Are you sure that's the issue? – elclanrs Commented Sep 27, 2013 at 0:47
- This seems to be a PHP question and not jQuery at all. The script that generates the images data is on the server-side not the client-side. You should include the plete PHP code that generates the data. – Boaz Commented Sep 27, 2013 at 0:49
3 Answers
Reset to default 5You can use regulare expression on your string like that :
var modifiedString = yourString.replace(/,\s*$/, '');
This will remove the last ma IF there is one and will also remove white space.
Try substring to remove last ma
var data = "{image : 'melbourne.jpg'},{image : 'tunnel.jpg'},{image : 'building.jpg'},";
data = data.substr(0, data.length-1);
console.log( data );
If Business Catalyst doesn't give you the flexibility to do the Django-style {if forloop.last},{endif}
tags, consider changing your
]
into
{}]
or
undefined]
so there won't be a trailing ma. Note that your supersized
plugin will need to know how to process these "incorrect" values.