Questions tagged [hashtag]

A hashtag is an in-text label that classifies content into a specific category, first popularized by Twitter users and now common in social media.

A hashtag is a hash sign (#) followed by a string which is usually alphanumeric, without spaces, punctuation or capitalization. It is used to classify the text in which it is contained and allow searching for related content.

Because of its adoption and usage by a large user base, it has been used in the filtering, searching and sorting of tweets and posts on other supporting social media platforms.

Examples

  • #StackOverflow
  • #StackExchange
  • #1337code
834 questions
-1
votes
2 answers

jQuery remodal popup adding hashtag href to url

I have a piece of html which basically looks like this: And then the definition of the remodal popup like following:
User987
  • 3,663
  • 15
  • 54
  • 115
-1
votes
1 answer

Grab Instagram post dates based on hashtags

I am not very good on python code, but I am tasked to write a code to grab Instagram post dates based on a certain hashtag (I have approx 2000 hashtags). The purpose of my task is to find out how many time the certain hashtag was mentioned per day.…
EJ Kang
  • 455
  • 2
  • 5
  • 17
-1
votes
2 answers

Find Twitter hashtag with Java

I'm going to do a sentimental analysis using twitter hashtag and I'm using Java for this project. How do I code Java to search for a specific hashtag and show the text? This is what I've tried: public static void main(String[] args) throws…
-1
votes
2 answers

Hyperlink with hashtag do not open in new tab

i am using this code to open all the URLs in new tab. but i want the url with # do not open in new tab. for example: jQuery("a").attr("target", "_blank");
Sajjad Ahmad
  • 143
  • 3
  • 17
-1
votes
1 answer

JS Regex help needed to create CashTags

I have the following JS code (below) which takes a string and spits out hyperlinked cash tags (i.e. $AAPL $TSE:BB etc etc) ... it works great but the problem is if my text contained something like "$N225".. I still want that to be hyperlinked, but…
Mr Jones
  • 181
  • 1
  • 3
  • 12
-1
votes
2 answers

Hashtag client side implementation using jquery & javascript

#input { -moz-appearance: textfield-multiline; -webkit-appearance: textarea; border: 1px solid gray; font: medium -moz-fixed; font: -webkit-small-control; height: 28px; overflow: auto; padding: 2px; …
devendra tata
  • 111
  • 2
  • 9
-1
votes
1 answer

Extracting urls, mentions and hashtags from a tweet

I am trying to extract all the characters that are not alphanumeric and also extract url's from a tweet using python. I should only be left with words seperated by spaces. For example: If my tweet is : "Hi! Check out my page at…
-1
votes
1 answer

301 redirect of an url that contains a hashtag replaces the hashtag with %23 in the browser address bar.

I tried a 301 redirect in CPanel but when the redirected url appears in the browser address bar it has the hashtag changed to %23. With this change the final destination is never reached. Here is the URL:…
jwilson
  • 1
  • 1
-1
votes
2 answers

jquery How to hide hash in url

I know this question was asked a couple of times but I'm a total jQuery novice and have no clue how to handle this issue. I'm using a slidedown menu on my site: http://ms.nordfire.de/fuchsbau16/ When I'm triggering the menu button, "#0" gets…
Julian
  • 13
  • 4
-1
votes
2 answers

Hashtag search in facebook Error :(#11) Post search has been deprecated

This is Bundle identifier com.facebook.FBLoginCustomUISample then it is work fine. But when i change Bundle identifier com.photosnapy.iphone it will give error. error ={ code = 11; message = "(#11) Post search has been…
-1
votes
2 answers

HashTag Not Working To Show Div When URL Has ?source= Added

I am firing up FancyBox2 with incoming HashTags. It all works... until you add a source code to the URL. How can I get this to work? Below is the code. I am assuming I need to say hash=everything up until a ? if a ? exist. Jquery: var thisHash =…
RooksStrife
  • 1,647
  • 3
  • 22
  • 54
-1
votes
3 answers

Get everything after the hash tag # in url

I have a url like this http://example.com/?hello=1234 using this ob_start(); var_dump($_GET); $result = ob_get_clean(); print_r($result); i get this array(1) { ["hello"]=> string(3) "123" } but when it comes to…
mwweb
  • 7,625
  • 4
  • 19
  • 24
-1
votes
2 answers

Get hashtags from string, replace some symbols in it and convert it to link PHP

I have some string with hashtags looks like @user_name. Now i convert all hashtags to links this way: $text = preg_replace ("/@(\\w+)/", '@$1 ', $text); As you can see, all hashtags becomes to subdomain names.…
Sir D
  • 2,164
  • 2
  • 17
  • 21
-1
votes
1 answer

AddThis new trending box, how to remove the extra Hashtags added to the URL's

AddThis new trending box, how to remove the extra Hashtags added to the URL's by AddThis. Exemple: http://www.website.co.uk/#at_pco=tcb-1.0&at_tot=5&at_ab=-&at_pos=3 https://www.addthis.com/get/trending
-1
votes
3 answers

How to mimic the anchor function in jquery

I need some javascript that will extract an anchor ('hashtag' in the case below) from the page's url and autoscroll to the tag with that name. Here's an example url: www.somelink.com/post1/#hashtag I tried putting the url in an anchor tag like this;…
x-y-z-select
  • 87
  • 2
  • 9