FF Automatic Curly Brace Insertion?
Jan 6, 2006javascript:alert(function(){if(window) return;})
becomes:
function(){
if(window){
return;
}
}
javascript:alert(function(){if(window) return;})
becomes:
function(){
if(window){
return;
}
}
I am stuck with an issue in my project from completion. My program is trading exoeriment with 2 groups. If any user in 1 group enters value in filed called askvalue, this value must must be updtaed to all other users in the group. I tried to do thi by inserting and updating the table. Values are updating correctly in table a but weppage s not being regfeshes to other traders in same group.
I am posting my code here:
When any user in the group clicks this button insertion sql statements have to executed and then refesh the webpage for all the traders in the same group without clicking refresh.
I came across the following code to check whether a variable was an integer:
Code:
function isInteger (s)
{
var i;
[code]...
I like to use curly braces, so modified it as follows
Code:
function isInteger (s) {
var i;
if (isEmpty(s)) {
[code]...
It now doesn't work. What am I missing?
Is it possible to make a file insertion conditional? I now have the code:
'<script type="text/javascript" src="http://www.site.com/showit.js">'
And I wondered if it is possible to make this conditional, something like:
if (mycondition==true) include('http://www.site.com/showit.js');
I have a button next to a textarea when they click that button it launchs another window. Now I need another button that will take a value (it will be an html code) close that window, and put that value in the textarea.
Sort of like how when you click the link button in this wysiwyg editor it pops up a window that asks for some stuff and then inserts it here.
Essentially, I am building an image upload plugin, and what the image inserted automatically at the end of the process, so I thought I would put this at the end of the script:
Code:
<script type="text/javascript">
tinyMCEPopup.execCommand('mceInsertRawHTML/mceInsertContent', false, '<?= $image_tinymce_safe ?>');
tinyMCEPopup.close();[code]....
If that is run, then the actual image appears in the editors instance. Is this a general JS / DOM issue (I got it to work with the original script before, I just stupidly overwrote the file!), or, is it something more?
I'm developing a webpage that is composed by several divs. These divs
are supplied by the server depending on the user that made the request.
Some of these divs require some javascript functions to be called when
they are added to the page. I add the content using innerHTML (function
renderPage(data) ....
Suppose I want to populate a drop down ajaxly. The population is written like:
var $select = $("#target");
$.each(datas, function(){
$("<option/>")
.val(thia.value).html(this.name)
.appendTo($select)
.data('srcData', this);
});
But the speed is considerably slow when the datas is large. I know that I can use just string concatenation and html() finally to speed it up but what can I do with the data()?
ive need to format the date (variable "tomorrow") in this form to mysql
format yyyy-mm-dd can anyone please show me how to amend my script?
<script language="javascript">
function showDate(thisObj){
/* create a Date object using the system clock */
today=new Date();
td = today.getDate();
tm = today.getMonth();
ty = today.getFullYear();
tomorrow=new Date(ty,tm,td+1)
/* convert contents to string and place in control */
document.getElementById(thisObj).value=tomorrow;
}
</script>
<body onLoad="showDate('date');">
<input id="date" type="text" readonly="readonly" />
</body>
How can jQuery locate a non-predetermined DOM insertion point? My application relies on custom code to "bootstrap" itself. I'm wondering if similar functionality is available in jQuery?
My app works in the following fashion:
- user places a script tag in their web page.
- my script fires and performs the following routines:
- scriptLocation = whereAmI()? (find scripts in document, length -1)
- insertBefore(DIV, scriptLocation);
- use DIV as canvas, DOM target for all that follows
- install application in DIV
Note that my custom app does not wait for any kind of "ready" state. It has no dependencies on the surrounding document. It fires inline. My impression is that jQuery's approach ("Find something, do something") is incompatible, because it relies on a known DOM insertion point. It would seem straightforward to "query" the DOM, and find an element of known ID. That would conflict with my business constraint; I have no control over the destination page. Are my assumptions about jQuery true? Or is there a way for a jQuery script to wake up, find its location, and the install elements there?
I am trying to create a WYSIWYG editor for my site, but seeing as how every browser gives different results when using the execcommand method, I am trying to do my own insertions instead.
What I would like to do is create an iframe with designMode On to enable editing of the frame, but when someone does a command to bold text, I want to make a method which enters <b>Some Highlighted Text</b> into the frame where the user highlighted so it would appear bold and the source would have the <b> tags.
My issue is I have been unsuccessful in learning how to take the selected text within an iframe and surround it with tags. I was able to accomplish this in Internet Explorer using this code:
Except the resulting text would actually have the <i> tags appear, and the source would be:
Pretty retarded if you ask me since in no way did I want it to convert the tags into entities.
Anyway, if anyone could please direct me to a method in which I can successfully take selected text within the iframe and surround it with HTML tags in such a way that the formatting will actually show.
I have got a DIV that I need to refresh, its content consists of an image that will change on the insertion of a row to the SQL Database, however, when I use a refresh on my div it does refresh but does not change the image...
My refresh code is ajax:
And my PHP code contains the MYSQL that has a mysql_num_rows, so that PHP can see if there are rows or not.
I would like my page not to redirect or refresh on my div change.. So I would just like my div to refresh.
I have an image insertion page that is part of a JS WYSIWYG. It works okay, but I would like to add a styled caption bar underneath it.
This is what I'm currently using for the caption (inserted by a button):
Code:
This is the code from the insert image page:
Code:
How do I put the caption bar after the image in the main code?
I am setting up a web page to collect some data via a questionnaire.
The questionnaire part is working fine, but I need some help with one
part. I have two different versions of the questionnaire (basically
just different orders of questions) and would like the users to be
redirected to one of the two versions. The idea I had was to have a
redirection page that simply had a web page counter on it (like so many
pages have now days) and based on this counter, people would
automatically be redirected to one of the two versions of my
questionnaire. Basically, if the counter was odd, the person would be
routed to version 1 and if even, they would be routed to version 2. I
thought this would be similar to redirecting people based on the type of
browser they are using or their language settings. However, I was
recently told there is not a way to do what I proposed above. So, this
leaves me with two questions:
1. Was the advice that I received accurate in stating that having a
simple script to redirect the user based on a web page counter is not
possible?
2. If so, does anyone have some advice as to how I could go about
automatically redirecting people to one of two web pages?
I have a basic web site where people can download my programs. To make it easier for them is it possible that I could add some javascript that would allow them to automatically install/run the program for them maybe with appropriate options/warnings etc.
View 6 Replies View Related<form false;">
<input type="text" name="rssurl" id="rssurl" size="40"
value='Skype'>
</form>
The code above has the value "Skype" and only after hitting Enter/
Return key, the value is submitted. How can the value "Skype" be
submitted automatically without pressing Enter/Return key?
Here's the problem when using IE for Windows: I have a website that has Word Documents to download, however these doc's open as word in the browser window. What I want: To automatically launch the save as box from a link Any dhtml tricks/advice for this?
View 1 Replies View RelatedI need to find the code that makes a web page immediately jump over to another url the moment a visitor arrives to it. I know the code is short, but I can't remember it. Anybody know what that code is?
View 3 Replies View RelatedIve got a page which for some reason needs to be refreshed before anything updates. Its a php page with mysql data on it.
At the moment ive got a script which refreshes it every few seconds, but when the user scrolls to the bottom of the page they are taken back to the top when it refreshes!
Is there a way i can make it refresh once as soon as the user comes to the page? as opposed to putting a timer which refreshes every X amount of seconds?
Does anyone know how to make a page redirect to another page after a given time? I am using a FREE ISP so i do not have ASP etc. I only have JAVA Script and HTML.
View 7 Replies View RelatedIs ther anyway i can automatically fill out forms and submit them thru
java?
supposing i hav a normal txt file that contains all data that needs to
be filed out into the form, is there anyway i can fill out a form and
submit it automatically by providing only the URL of the form and the
txt file?
The script I use to automatically resize a table works great in
Internet Explorer, but in any other standards compliant browser it does
not. Code:
I am creating a Javascript tool which will automatically and randomly
fill in a multi-page form.
It pops a new window, containing the multi-page form (both pages are on
the same server so cross-scripting is not an issue).
It then scans through every element in document.forms[0].elements and
takes the appropriate action depending on the input type, i.e.,
randomly select a radio button in a group, randomly check a box or not,
insert random text into a text box, randomly select a drop down menu,
etc., then it submits the form and repeats the process until a
"finished" state is reached.
What I would like to do is run this script say 1000 times so I can
automatically have 1000 responses to my form. Can anyone give me
suggestions on how to do this efficiently using Javascript without
completely hammering the client machine?
I have a JavaScript which opens a document in a pop-up window. The complete
document content is contained within a table of fixed width. Currently, I
pass with window height & width as parms. What I would really like is a way
to have the JavaScript automatically resize the window to fit the table!
With some digging I suspect I can get the table width but how do I get the
table length which is dependant on the amount of content?
I want add a gif picture link to a website from by the website download pictures, but it does not work. If I reload the website and use the script, the .gif type is replaced to .htm and it's don't show.
[Code]...
My requirement was to generate a popup once you immediately login. windows.alert('please call') then the popup should come for every 2 hrs.
Even though you navigate to different pages on the site..This should still come..
I have started something like this:-- 1. Calling this script on everypage.
Code:
<script type="text/javascript">alert_settimer();</script><script type="text/javascript">
alert_settimer();
[Code]....
It is able to give me a popup for every 2 hrs. But whenever the user reloads the page after 1 hr. The function is called again and the count starts from 0hrs again. OR for example if 20 mins already passed then if i am going to a new page then the function is called again and so the timer starts again. I am not getting any idea how to restrict it calling every time. OR send that 1 hr again to the function so that it starts from there. I tried some thing like setting the value in a session variable and then starting the counter from that value.