Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9034157
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T08:24:46+00:00 2026-06-16T08:24:46+00:00

I am creating a bookmarklet that pulls prices from a page (like let’s say

  • 0

I am creating a bookmarklet that pulls prices from a page (like let’s say Amazon) using a regex and I would like to be able to pull additional information regarding the fontsize of each price being pulled as a way for ranking their importance.

Below is a code I have generated that isclose to what I am looking for. match() creates an array of prices and :contains goes back through and re-searches each of the found prices for their fontsize. However, this would be a problem if the same price comes up twice.

I am looking for a way to do it all in one step.
Any advice would be appreciated.

var prices = jQuery('body').text().match(/[\$€£]\s*(?:\d[\d,]*(?:\.\d+)?)/g);
    jQuery.each(prices, function() {
        var size = parseInt(jQuery(":contains('" + this + "')").css('fontSize'));
    });
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T08:24:47+00:00Added an answer on June 16, 2026 at 8:24 am

    you’ve to iterate through the results of the container elements

    var prices = jQuery('body').text().match(/[\$€£]\s*(?:\d[\d,]*(?:\.\d+)?)/g);
    var results = [];
    jQuery.each(prices, function() {
        var price = this;
        results[ price ] = [];
        jQuery(":contains('" + this + "')").each( function() {
            var size = parseInt( $( this ).css( 'fontSize' ), 10 );
            results[ price ].push( size );
        } );
    });
    

    results is now an array with the prices as key and all corresponding font-sizes as values of the keys

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Creating a browser based single-page browser based RIA. Would like to make use of
Im having trouble with creating a JS bookmarklet, I have the following that when
I'm creating a bookmarklet and of course I'd like to use jQuery. But, if
I'm creating a small web page using jquery-ui-1.8 which is having a frameset and
I'm creating a plugin/bookmarklet that will take an XML document embedded within the <textarea>
I'm creating a browser plugin (bookmarklet) that exacts a large XML document embedded within
I am creating a bookmarklet button that, when the user clicks on this button
I'm creating a Bookmarklet for YouTube, i want to get the ID from the
I am creating a bookmarklet that is to be used across a wide range
I am creating a JavaScript bookmarklet that dynamically updates the title bar, but it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.