Hi there,
You can just check for javascript string manipulation functions. Here you go
var s = "hello world";
if(s.indexOf("world")>-1){
//do your operation here
}
Hi there,
You can just check for javascript string manipulation functions. Here you go
var s = "hello world";
if(s.indexOf("world")>-1){
//do your operation here
}