I have this line of code for jQuery to get the src
of an image $(this).find("img").attr("src")
so, I'm sure as you all know it will return something like http://www.mysite.com/this.image.png
Is there any such statement that can allow me to grab the url without the file extension so: http://www.mysite.com/this.image
so I can add some things to the url like pview
for an image preview file or big
for a large image etc.
Any help would be appreciated. Thanks!