I have an image tag that looks like this:
<img src="http://www.example.com/render/pattern?obj=patterns/pattern_1&color=7F8C6C&obj=patterns/pattern_2&color=C8D9B0&obj=patterns/pattern_3&color=FFFFD1" width="100" height="100" alt="" />
Is it possible for me to use jQuery/Javascript to search the src attribute to find the text "pattern_1&color=" and then retrieve the 6 characters after that? If so, how would I? If not, how else could I retrieve these 3 hex values?
Thanks