Questions tagged [refer]
85 questions
31
votes
6 answers
Link back to page visited before form
I have a listing page, then a form, then a thank you page. I need to put a link on the thank you page that takes the user back to the page they were on before the form which always varies. I've tried using this:
= link_to "Back", :back
But this…

user1738017
- 609
- 2
- 12
- 29
11
votes
4 answers
CSS - Get property of other element
I wonder if is it possible to refer to some elements using something like the Javascript DOM, without using Javascript or other programming languages.
This is what I mean. Suppose that we have two divs that should have the same height. I would like…

DamiToma
- 921
- 3
- 9
- 27
11
votes
3 answers
Redirect based on referrer URL
In my site I have a password protected page containing some links to other sites also operated by myself that cannot be password protected. I would like to place a HTML code onto one of the other sites I operate that checks that the person arriving…

JBithell
- 627
- 2
- 11
- 27
6
votes
2 answers
VBA Refer to worksheet vs chart sheet
I'm trying to write a small function that takes in a filepath (where the workbook was saved at), targetpath (where the pdf will be saved to), and a string of tab names (pipe (|) delimited) in excel.
The user of the function doesn't have to input a…

Jesse Smothermon
- 1,041
- 10
- 25
- 36
3
votes
1 answer
Does document.referrer equal the HTTP referer header?
If I follow a normal link from http://google.com to http://example.com,
normally the http referrer header that my browser sends to example.com is of google.com.
Is that header's value always the same as the value of document.referrer inside the…

FLUSHER
- 257
- 2
- 12
3
votes
1 answer
Does referer effects GA tracking?
I am thinking to add Referrer-policy header in my app. Setting this header to :-
Referrer-policy - origin when cross origin
will send only base url (http://www.example.com) in referer header to all the third parties.
Is there any chance that this…

Ranjan Kathuria
- 51
- 9
3
votes
2 answers
Reference to java primitive types for casting
I wanted to cast a series of objects in an array to different types based upon user preferences.
Is it possible to reference primitive-types from an array for casting?
public void MakeByteBuffer(float x, float y, float z) {
xyz[0] = x;
…

Jonathan Abbott
- 180
- 1
- 10
3
votes
0 answers
Writing my own api, help please
I have been writing my own api for my site, the api will only allow a consumer to read basic information.
Somebody suggested to me that I gave the consumer a public and private API key. The private API key would be for server side scripts such as…

Frank
- 1,844
- 8
- 29
- 44
3
votes
1 answer
Get referring url to facebook iframe tab
Is it possible to get the referring URL to a Facebook page tab?
Right now the referring url is always http://static.ak.facebook.com/platform/page_proxy.php?v=5 and I can't find any documentation about this subject. Is facebook providing this param…

user1313723
- 126
- 1
- 8
2
votes
2 answers
Delphi: refer to control from thread in frame
There is a FRAME (not a form) and a thread. How to refer to Frame's control from the thread? For example I want to disable a button from a thread. But I don't have a pointer to the button, no global variables in the frame.
Thanks!

maxfax
- 4,281
- 12
- 74
- 120
2
votes
2 answers
is there any method or api available to create unique referral link for telegram bot with python
I'm trying to create bot in python with referral feature but I didn't get any method to create referral links for user in telegram docs. can you suggest any alternative approach for it. so that we can create a link and any new member can follow that…

VIJAY
- 49
- 1
- 11
2
votes
2 answers
Referring to a macro variable already defined
I was going through a SAS code and found the following ways of referencing a macro variable.
&variable_name .
&variable_name
I know that the first way of referencing is the normal way of how we refer to a defined macro variable in sas.
But, could…

ethan
- 309
- 1
- 7
- 19
2
votes
5 answers
Which browsers/plugins block HttpReferer from being sent?
I am trying to interpret HttpReferer strings in our server logs. It seems like there is quite a high number of empty values.
I am wondering how many of these empty values are due to direct hits from people entering our URL directly into a browser…

Simon_Weaver
- 140,023
- 84
- 646
- 689
2
votes
6 answers
what does static here refer to in java
pretty rusty but im pretty sure i've never seen a code written like this. it is a mock question from java associate exam could someone tell me whether the 'static' in line 10 is connected to the go() method?? and mainly why is the output is x y c…

Leonne
- 85
- 3
- 10
2
votes
2 answers
How can I add a jar to an APK & make the APK refer to it without Eclipse?
This may seem a bit weird, but I need to implement it.
I have an APK & I dont have its source code.
Now I can break the apk , modify & repack it, but while doing so, I need to add my custom jar to it & make the app/apk refer this library/jar at run…

AndroidGuy
- 1,270
- 4
- 15
- 32