3
votes
2answers
44 views
safe place to save code
Where is the most secure place to store sensitive code on a server (ex, authorization php, contact scripts, sensitive or protected javascript)?
You guys/girls got any tips or tric …
0
votes
6answers
78 views
How do I draw the lines of a family tree using HTML CSS?
I'm trying to implement something similar to what http://www.ancestry.com has, but I'm not sure how to draw the lines.
Here is a rough ascii sketch of what I want to do:
…
0
votes
2answers
15 views
JQuery: Select elements that are before an anchor with a specific text
I have a div having a css class "MyClass". Inside this div, I can have any number of checkboxes immediately followed by an anchor having some specific text (lets say MyText for the …
0
votes
4answers
66 views
Javascript ‘if’ conditional not … conditioning.
I'm checking a number of 'read more' links on my blog, and either hiding the link (for the first two posts), or hiding the content and keeping the link. I'm running the links' id …
0
votes
4answers
54 views
Which is good way to bind more than 10000 records with sql?
first way By using java script
or
second way By using Data sourse in asp.net sqldatasourse
which is taking less stress while loading the data.. into webpage
4
votes
9answers
82 views
JavaScript: How to create an Object and filter on those attributes?
I have a JavaScript array of houses like so,
{
'homes' :
[{
"home_id" : "1",
"address" : "321 Main St",
"city" : "Dallas",
"state" : "TX",
"z …
0
votes
3answers
35 views
Website problems with Safari
Does anyone know why my site is all messed up on safari? I need to get it live by monday and this is racking my brain.
http://cheapramen.com/JQuery/WildFire/
Thanks in advance!
0
votes
3answers
35 views
resetting form with javascript won’t work…
Here is my main page code:
<form><iframe name="iframe_pic" src="iframe.html"></iframe></form>
Here is my iframe.html:
<script type="text/ …
0
votes
2answers
27 views
generating javascript string in python
i have string stored in python variables, and i am outputting a html that contains javascript, and the i need to create javascript variables.
for ex, in python
title = "What's yo …
1
vote
3answers
18 views
How do I add a statement in javascript based on the current url?
Basically I want to check what url the user is on and compare it to a default value and then run a statement
Let's say my url is http://stackoverflow.com/questions/ask, I'm tryin …
2
votes
4answers
56 views
Can I call jquery click() to follow an <a> link if I haven’t bound an event handler to it with bind or click already?
I have a timer in my javascript which needs to emulate clicking a link to go to another page once the time elapses. To do this I'm using jquery's click() function. I have used $(). …
0
votes
4answers
48 views
window.onload equivalent for Ajax applications?
I'm using window.onload to call my JavaScript code that has to be executed after the page is fully loaded. From what I read this is the recommended method to call such scripts.
Ho …
0
votes
2answers
24 views
help with form target, it popups in a blank page instead of the div I chose.
I have set the target of the "pic_form" to a div (pic_target).
The form (pic_form) and the div (pic_target) are both inside the same iframe (iframe_pic).
Whatever I set the target …
2
votes
4answers
78 views
Equivalent of “Google Closure Compiler” for HTML?
Is there an equivalent of Google's Closure Compiler for HTML minimizing?
1
vote
3answers
81 views
Difference between ^ Operator in JS and Python
I need to port some JS code which involves Math.random()*2147483648)^(new Date).getTime(). While it looks like for smaller numbers, the python function and the JS function are equi …
