-1
votes
1answer
10 views
Echo a message in php when finish saving results to a texfile
I have a form that when the user click the submit button, the php result will be saved in a textfile.
How do I echo a message on the page to inform the user that its done saving in the file and its ...
0
votes
0answers
9 views
Volume Control for <embed>?
I have an audio element with JavaScript volume control. This works fine with HTML5 browsers, however, some browsers (like the most recent version of Safari, for example), require running an ...
0
votes
1answer
34 views
What's the best JS replacement of frameset in HTML [on hold]
I am working on a internal management system with a menu in the left and different forms in the right. On click of item in menu, right block should reload corresponding page. <frameset> can do ...
1
vote
0answers
6 views
google maps tracks API
I need help, I am developing an aplication with use google maps tracks API.I not be able to use google maps tracks API.
I am using the ...
0
votes
2answers
33 views
Where do you put the relative url in a jQuery code?
I have to reference my two html documents in divs to a primary html and I can't get my other htmls to render.
This is my script in the head:
<script ...
-1
votes
0answers
22 views
Technology Twitter, Soundcloud, Stackoverflow etc. use
I have been thinking about this a lot.
When I go through these sites, mostly twitter and soundcloud, most of the time the content portion of the website loads with the help of ajax leaving the header ...
-3
votes
1answer
46 views
I have a problemm with my script :(
Hey Guys I have a Problem with my Javascript, what I do it wont be solved :(
I want that when i clicked 2 times on the same button it have to stay still by div.
I want to say when I click on the same ...
-2
votes
2answers
18 views
Test of string pattern match in Javascript
I would like to check if a string matches given pattern in Javascript
like
<script>
var str = "Error: ...";
var isMatch = checkMatch("^Error:*", str); //return a boolean
...
0
votes
2answers
26 views
href HTML call to page “UP” Directory
This question is simple, but confusing to explain. Feel free to edit the question.
I'm making a django site and want to link to my admin site.
current url structure is /livestream/... ...
0
votes
1answer
29 views
How do you reference an html document to another html document in a div using jQuery?
this is my html:
<!DOCTYPE html>
<html>
<head>
<title>Free Jokes!</title>
<meta charset="utf-8">
<link href="final%20project.css" ...
0
votes
1answer
14 views
Determine how long portion of webpage stays visible in browser
I have a website with pages that scroll very far with lots of images on them.
I'd like to record how long the users stay on each portion of the page so I can see which images they're most interested ...
0
votes
1answer
22 views
Is there a js function I could use that would make the placeholder attribute work in IE?
Right now I have a bunch of input tags in my project that use a placeholder, like this:
<input id="Name" name="Name" placeholder="Name Goes Here" type="text" value="">
Is there a js function ...
0
votes
0answers
19 views
Post to facebook with fiddle
I am posting to Facebook with the code below but it doesn't show the preview image of the link like what i manually do.
How do i show facebook preview image when posting?
<script>
function ...
2
votes
1answer
20 views
Knockoutjs throws exception when trying to create series of unordered lists
I'm attempting to create a series of <ul> tags using the foreach: context. The goal is to iterate through the list, and start a new <ul> for every 4th item. My code so far is:
<ul ...
1
vote
1answer
39 views
How to create a dollar amount input field in an HTML form?
I have an HTML form I've created that has a field that needs to take a dollar amount.
From what I've read, JavaScript doesn't recognize decimals as numeric components and the accepted practice is to ...