0
votes
0answers
4 views
Prototype - Refine Selectors
I have inherited code that has prototype that does the following to tabular data:
node.select('tr:first-child').each(function(x) {
x.addClassName('some class');
});
I'd lik …
0
votes
0answers
11 views
Javascript file dependencies - Recommendations?
This might be more of a philosophical debate, but here is what I have:
Two controls which share a Javascript resource library to call a webservice.
They are ususally used in co …
0
votes
0answers
2 views
how to implement cascaded dialogs in DOJO Toolkit
I was looking for cascaded (multi-level) dialogs in DOJO Toolkit. I understand that a proper implementation of this will be available in DOJO 1.4. (http://stackoverflow.com/questio …
0
votes
0answers
3 views
JQuery Overlay does not auto close on Flowplayer video end
Hey guys, I am using both Flowplayer and Jquery Tools Overlay. I have my overlay to display when they click a link. The overlay displays correctly and the video auto-starts as it s …
0
votes
1answer
18 views
Converting Date and Time To Unix Timestamp
I'm displaying the date and time like this
24-Nov-2009 17:57:35
I'd like to convert it to a unix timestamp so I can manipulate it easily. I'd need to use regex to match each …
1
vote
2answers
44 views
javascript: function call to itself
hi all, I suppose the following code:
jQuery("#mybutton").click(function(){
//do something
});
How could I recall to this function "anonymous"?, I can not put a name to th …
0
votes
1answer
31 views
parseInt, parseFloat, Number… i dont know
Hi Does someone know why this just wont work!! i have tried alsorts.
function loadJcrop(widthN, heightN){
var run = true;
if( run === true ) {
alert( parseInt(Number …
0
votes
3answers
14 views
how to set visible true and false for drop down list box using javascript in asp.net
<asp:DropDownList ID="ddloption" runat="server" Visible="false">
<asp:ListItem Text="Active" Value="Active"></asp:ListItem>
<asp:ListItem Text="D-Active" V …
0
votes
0answers
19 views
Validate upload file path if it is local OR network using Javascript in ASP.NET web page
I have a file upload control on ASP.NET web page.
If I try to upload a file from network, then I get a runtime error. actually I want to trap this error and display a friendly me …
0
votes
0answers
6 views
Opera Unite Javascript oddity
I am having a weird time with an Opera Unite web app I'm getting my feet wet with. I'm using the getItem() function to return data that's posted. Now that's supposed to return nu …
0
votes
2answers
23 views
What is the best approach to store xml temporarily on the client side?
My application has a lot of decision to make before finally saving my data to the database. I am using JQuery to do this. I have succeeded in creating a moderately long xml string, …
0
votes
4answers
25 views
Can I get a Javascript event from the selection of text outside of text or textarea?
I would like to know when a user selects text in an html page using Javascript. The text should not be editable. The onselect event seems to be only applicable to <textarea> …
0
votes
5answers
47 views
onClick does not work properly on p tag
Hi,
I want to bind a click event to every <p> but it does not seem to work properly.
When I run the script I instantly get three alerts. I only want to get them when clicki …
0
votes
1answer
11 views
ExternalInterface-passing dynamic arguments to Javascript function
I'm having a problem passing dynamic variables to a Javascript function using ExternalInterface.
The variables don't seem to be resolved correctly
//CODE START
var customInfo :St …
0
votes
8answers
44 views
Secured Client-Side script
Hello there
I have got a particular requirement where some critical algorithms have to be handled in the client-side script and it got to be secured. Using javascript will just ex …
