HTML button anchor link - html

Thanks in advance for your help.
I want three buttons to anchor link to a single location (contact form) on a one page website.
Button 1 works, but the other two display missing pages or wrong url.
This is the code:
BUTTON 1:
CONTACT ME TODAY
BUTTON 2:
text hereGET IN TOUCH
BUTTON 3:
text hereCONTACT ME TODAY
LINKED LOCATION:
I hope you can help me. Thanks!

Related

Html code to make link with text box and pretext link

So, I want to konw i anyone can help me
I need a html code that does this
A text that can't be changed. Something like: Put youu code here
A invisible pretext link. Something like http://trackyourcode.com/yourcode
Then a text box that the person can write the damn code
then a button tha says GO
when the person press the "go" button it will open a new tab with the pretext link + the person's code
So if the person puts "6584" as code
the link will turn ou like this
http://trackyourcode.com/yourcode6584

Blogger Soho theme: How to modify function of Jump Link button?

I am using the Blogger SOHO theme for my Blog:
https://www.firozemistry.com
In the Featured Post, clicking on the Jump Link "Open" opens the page after the first line of text. How do I modify the HTML code to make the Jump Link open the page right at the top?
I have tried poking around in the HTML code of Featured Post widget, but I can't figure out how to do it.
I am a novice, and not well versed in HTML, so I would be most grateful in any help. Thanks in advance!
Regards,
Firoze
Go to Theme > Edit HTML
Click anywhere inside the code area and press CTRL + F
Search for fragment "more" and remove it
Update
Put this code before </body> tag to remove #more from link href
<script>
var link = document.querySelector('.jump-link a');
link.href = link.href.replace('#more', '');
</script>

CCControlButton's Title not show in cocos2d-x

When I use the following code to get the title in my button, my button does not show its title, just a blank button. How can I fix this code?
resumeBtn->setTitleForState(CCString::create(stringResource->getString("resume")->getCString()), CCControlStateNormal);
resumeBtn->setTitleForState(CCString::create(stringResource->getString("resume")->getCString()), CCControlStateHighlighted);
Any help would be appreciated.

bada Programming - Tab and Panel

I am currently doing an app with tabs with panels. I have tried following the TabSample provided here: http://developer.bada.com/help/index.jsp?topic=/com.osp.cppapireference.help/classOsp_1_1Ui_1_1Controls_1_1Panel.html and the BasicApp (for usage of panels) provided in the IDE. The app has 2 tabs, tab1 and tab2. In tab1, there is a button and a label, once the button is clicked, it will change the text in the label and appLog it. The problem I am currently facing is that when I can't even click on the button, it does not respond (no response for button and label and applog), I have to click on tab2 then click back to tab1 in order for the button to work/respond. May I know how to solve this?
Many thanks in advance!
I kept trying and looking out what's wrong with the TabForm and realized the problem and solved it by adding these lines of code in TabForm::OnInitializing(void) :
if (pTab)
{
pTab->SetSelectedItem(__panelId);
__pPanel[0]->SetShowState(false);
__pPanel[1]->SetShowState(false);
__pPanel[__panelId]->SetShowState(true);
}

Share on facebook wall

Haw can i share some info on facebook wall?
http://www.facebook.com/sharer.php?u=http://Mysite.com/default.aspx&t=sometext doesnt work.
I want to add custom share button on the my own website
what do you want to share exactly ??
if it's a website ,just copy the link you want to share and paste it inside the status area .
<script>
function fbs_click()
{
u=location.href;
t=document.title;
window.open(‘http://www.facebook.com/sharer.php?u=’+encodeURIComponent(u)+’&t=’+encodeURIComponent(t),’sharer’,'toolbar=0,status=0,width=626,height=436′);
return false;
}</script>
<a href=”http://www.facebook.com/share.php?u=<url>” onclick=”return fbs_click()” target=”_blank”><img src=”ADD_IMAGE_URL_HERE” alt=”Share on Facebook” /></a>
you can place this code inside your web page in the place that you want the share button to appear , and change to the link you want to share.
for more info check this, this and this