ボタンの特定のコードを取得する必要がある一連のページがあります。URLにあるコードをjQueryで変数に入れたい。
URL の例は www.example.com/folder/code/12345/ です。
(siteCode)という変数の数字部分を取得したい
ご回答ありがとうございます。
jquery/疑似コード:
var siteCode;
// start function
function imageCode(){
siteCode // equals number part of URL
$('.button').attr('src', 'http:www.example.com/images/'+siteCode+'.jpg');
}