-2
votes
0answers
29 views
Compare dates in Javascript [closed]
Possible Duplicates:
Compare 2 dates with JavaScript
Compare dates in Javascript
How can we compare two dates in javascript?
2
votes
1answer
26 views
Load and execution sequence of a web page?
Hi All:
I did some web based projects. But I don't think too much about the load and execution sequence of an ordinary web page. But now I need to know detail. It's hard to find t …
0
votes
1answer
16 views
Scroll to top of page after async post back
So I need to scroll to the top of the page after an async post back in an asp.net update panel.
The code I used was this:
Sys.WebForms.PageRequestManager.getInstance().add_endReq …
-3
votes
0answers
72 views
How does SO handle this case? [closed]
alert('hi');
I'm inserting script into my post,which is removed when shown.How did this happen?
0
votes
1answer
13 views
Any library to convert richtext to html.
At present I am using widgEditor
It is a good library in JavaScript but has some minor issues. Is there any other library that can convert a Rich Text into an HTML equivalent?
0
votes
4answers
39 views
Need help with jQuery to JavaScript
I want to rewrite this line as vanilla JS so it is applied quicker (and before the downloading of the jQuery library). The line is
$(document).ready(function() { $('body').addClas …
0
votes
6answers
37 views
how to create a table with javascript ?
I have this php function, which I want to convert to javascript function, but I don't know how to create a table in javascript.
I guess I have to have a container (DIV) to insert …
0
votes
3answers
32 views
Compare dates in Javascript
How can we compare two dates in javascript?
0
votes
1answer
26 views
jQuery matching ID with a ‘ = ‘ in it
Hi all:
Has anyone tried matching an id with an equal sign (=) in it, and WORKED? E.g.:
// DOM structure
/*DOC += <span id='Test=Test' class='something'></span> */
v …
0
votes
1answer
26 views
Form entry gets inserted into the HTML code?
I am using following code to display HTML Form on my web page. This code also uses a third-party .js file that is linked to it. Everything is working fine except that when the firs …
0
votes
2answers
21 views
Login via cURL to Javascript Page?
Hey guys,
I'm having some trouble devise a script which attempts a login to a billing portal (Freshbooks) using cURL. I've seen various examples of this online (http://www.trap17. …
0
votes
4answers
41 views
Basic Javascript question: How to open a new window?
How do I open a new window in javascript properly?
I've tried:
<a href='javascript:window.open("testing.html","mywindow","menubar=0,resizable=1,width=200,height=500,left=0,top …
0
votes
3answers
33 views
Why doesn’t the image ‘src’ gets replaced with this javascript ?
var x = document.getElementById("pic");
x.src='path.jpg';
Shouldn't this replace the source of the the image with the id 'pic' ?
What am I doing wrong?
When I right-click a …
2
votes
3answers
62 views
Can JavaScript detect when the user stops loading the document?
I'm implementing Comet using the script tag long polling technique, based on this page.
One issue (that I don't think there's a solution for) is the "throbber of doom" - the brows …
1
vote
0answers
15 views
Using JS how can I stop child Iframes from redirecting or at least prompt users about the redirect
Many sites have scripts similar to the one below. These are put to stop other people from framing the sites.
if (top.location != location) {
top.location.href = document.location …
