javascript

javascript html form

send a value from javascript to html form input having a value in javascript, need to send that to <'input type='hidden' id='imgscr'/> when submitting the form the value also should submit.. (set value from javascript to html form input) ...

Element className inside MoodalBox?

On my site I've got a link that opens up a MoodalBox (http://www.e-magine.ro/web-dev-and-design/36/moodalbox/). The page displays fine, but I have an anchor on the page that calls a javascript function to change the className of a div (from hidden to visible). I've debugged it all the way down to the actual function call that sets the ...

Timeline Charts like Github.com

Has anyone seen an open-source library that produces charts similar to Github.com's commit timeline charts? Check out this profile (picked one at random) and note the bar graphs below each project. I've been trying to dominate Flot into behaving correctly but it just doesn't have the flexibility of formatting options to come up with a d...

What is a good client side markdown editor?

I am using markdownsharp for a javascript client i found http://wmd-editor.com/ and heard it is out of date. I found this and saw it has the same files but when replacing the source with the wmd-editor files the html stopped working. I dont see an obvious solution (or if i am missing files). What javascript markdown preview and editor s...

how to scan image on php or javascript?

hello all i dont know its possible or no? i have a project in php , can we scan image on php or javascript or ... via scanner , is any way for that? ...

MODx Problem How to add google conversion code to specific pages

Hi I'm using modx cms, I'm trying to add my conversion code to my pages. I've tried creating chunks in modx but these don't seem to appear. Should I be using snippets for conversion code? Thanks for your help Regards Judi <!-- Google Code for Call Me Back Conversion Page --> <script type="text/javascript"> <!-- var google_conversio...

problems with selectors with jquery

Sorry guys, I am trying to add an event to a image inside of a table, so when its clicked it collapse the div under need. I am facing several problems here. all tables and div use the same class. it may be a minimum of two tables and divs. first table should no be click able, only its images (for show and hide div under) rest of tab...

Most concise way to do text replacement on a web page? (using GreaseMonkey)

(Yes, yes, I shouldn't use regexps. Alternate solutions are most welcome!) I'm trying to customize my view of a web page I use a lot, using GreaseMonkey to filter out things I don't want to see. Basically, the pages contain a lot of links that look like this: <a class="foo" href="blah">Text</a> and I'd prefer them to look like this:...

Navigation only in iframe

I have iframe in the site which acts as an internal browser. I know that frames are generally bad idea but I was not able to find alternative. The question is how to prevent navigation of browser when user clicks a link inside iframe - only iframe has to be redirected, not ALL browser. Sites inside iframe are limited, very simple - mostl...

Jquery select box problem with Internet Explorer

Ok, this might be a really odd problem. I am writing a web application, and I want to change the value of a certain select box: <select name="type" class="type"> <option value="word">word</option> <option value="digit">digit</option> <option value="letter">letter</option> <option value="single">single character</option> <option value="...

Trying to bind multiple InfoWindows to multiple Markers on a Google Map and failing.

My project uses a JSON feed to grab info about earthquakes within a specified latitude and longitude boundary, essentially making a box. I take this info and turn all the results into markers on a Google map. I need each marker to also display some additional information, so I'm trying to use the built in InfoWindow objects such that w...

Explain this fragment of Javascript to me

I am newbie to jQuery, can someone explain what this code does: $("#currency form").submit(function(e) { triggers.eq(1).overlay().close(); return e.preventDefault(); }); ...

INVALID_STATE_ERR: DOM Exception 11

Hi all, I'm developing a simple auxiliary class to send requests using XmlHttpRequest (code below). But I cant make it work. At google chrome, for example, I get the error INVALID_STATE_ERR: DOM Exception 11 and at the other browsers I get a status == 0 Thanks //@method XRequest: Object constructor. As this implements a singleton, t...

how to set a variable for external javascript file?

I am trying to figure out how to set my session_id variable to to be used in an external js file. Here is what I have. php file: $output = '<script src="test.js"> var session_id = '.$_SESSION['id'].' </script>'; print $output; js file: alert(session_id); With this I am getting an error saying session_id is not defined. Is the...

Is there such a thing as a catch-all key for a javascript object?

Considering the following javascript example: var myobj = { func1: function() { alert(name in this) }, func2: function() { alert(name in this) }, func3: function() { alert(name in this) } } myobj.func2(); // returns true myobj.func4(); // undefined function Is it possible to create a 'catch-all' key ...

Changing window.location.href in Firefox in response to an onunload event

Hi, I have a strange JavaScript problem using window.location.href, which apparently only affects Firefox (I'm using 3.6). Normally window.location.href would not be read-only, and this works perfectly in FF: window.location.href = "http://google.com/"; However, when I call a function in response to an onunload event (), this doesn'...

What's the symfony way to set a javascript variable?

<script type="text/javascript">var name="value";</script> I need it to be executed before another file included by use_javascript('name.js'); How to do it in symfony? ...

javascript variable?

I have this: function OpenVote(id, stemme) { var postThis = 'infoaboutvote.php?id='+id+'&stemme='+stemme; } and this: <script type="text/javascript"> OpenVote(10, CripO); </script> Why have i done wrong? as you see i want 10 to be "id" and CripO to be "stemme" ...

Is it possible to get pixel coordinates of text and draw a rectangular border around it using Javascript?

Dear all, I am evaluating technology options for an upcoming project, and one of the requirements is to draw a rectangle around certain groups of words in a text field. Each time the text is evaluated and parsed, certain recognized parts of it must be boxed with a rectangle, which should also respond to mouse clicks. There is even a re...

Javascript regular expression

text = '#container a.filter(.top).filter(.bottom).filter(.middle)'; regex = /(.*?)\.filter\((.*?)\)/; matches = text.match(regex); log(matches); // matches[1] is '#container a' //matchss[2] is '.top' I expect to capture matches[1] is '#container a' matches[2] is '.top' matches[3] is '.bottom' matches[4] is '.middle' One solution ...