I'm pretty sure this is a Javascript issue, despite the subject line of this message.I'm using Javascript to create a popup window on my site. Users click on the link and get a popup with supplemental information about the item they clicked on. Works great. The html link to open the popup looks like this:
<a href="javascript:popup(xMoreInfo_popup)" onMouseOut="clearEl();">Click HERE for more information</a>
...where "xMoreInfo_popup" is a variable that tells the "popup" function which information (html code) to display. This then connects to a Javascript function that looks like this:
var popupWin var wholeWin function popup(term) // write corresponding content to the popup window
[code]....
Now to my problem. This works as expected and just perfectly in IE. If the user clicks on the GO TO SUPPLEMENTAL link, it autoscrolls down to the supplemental information. In Firefox, however, it behaves quite oddly. Instead, when the link is clicked, the popup window displays the html from the original parent, rather than the information in the popup window! Now I can click on the original "parent window" link in the popup window, then it shows the popup information again in the same popup window, but autoscrolled to the proper place this time.
I am using an online e-commerce hosting solution and they wont let me modify certain pages because they have full control. Is there a way to do it through jQuery?
Here is the tag:
<a href="AccountSettings.asp?modwhat=change_a">Change e-mail address, or password</a>
I want to change the text "Change e-mail address, or password"
I have a web page where a third party application "SharePoint" is broken file urls.If I have a file url like this \jquery.comfolders est folderdoc1.docThe application will add an href tag and the html will come out like this
I want to find a way of using canvas tags that are created at runtime. I went about this by trying to change the id of the tag, ONLY to find out that javascript did not like the fact that I was using numbers, even though I converted to String first... var count = 0; for (var item=0; item<20; item ++) { if (count%5==0){ document.write(" ||| "); } var canv = document.createElement("canvas"); canv.setAttribute('width',300); canv.setAttribute('height',300);
num = 505; aStr = num.toString(); // does NOT do the job for some reason !!!??? aStr = 'canvas'; // this works... canv.setAttribute('id',aStr); document.body.appendChild(canv); count += 1; } var C = document.getElementById(canv.getAttribute('id')); if (C.getContext) { makePlot(C); // does the plot to the canvas }
Is there a way to change html tags without touching the inner html? For example, changing all h4 elements to an h2. Maybe something like this? jQuery('h4').replaceWith('<h2>' + (this).html + '</h2>');
I want to be able to match all <a> tags on a Web page that are external links, which would be signified by the href attribute starting with "http://", obviously. Then I want to add an attribute to the matching tags.
I ran across this script that is supposed to do that:
But it doesn't work. I don't understand regex very well yet, so I'm not sure if that part of it is right, but the jQuery syntax looks correct to my inexperienced eyes.
I know jQuery is working on the site already, the script is below the call the the jQuery library, and yes, I do have the script in the Head tag of the page...
Am trying to create a link on a simple html site, using Javascript, to create the URL in an HREF. The file I'm trying to link to changes each day and uses the date as it's name.
I have one drop down list having some characters name. I have created this list dynamically using javascript. I have <h3> tag in html having same characters' name using that I had created drop down list. There are <blockquote> along with <h3> tag which is speech of that character. I have to generate the javascript in such a way that, if character "A" is selected and sppech belong to that character should be visible.
I came across some embedded JavaScript code and I noticed some weird “HTML comment-like tags” within embedded JavaScript that are getting rendered in FireFox but not IE. Specifically the closing tag "//--> And the JavaScript code between these tags is functional (not commented out)!
I'm trying to select data from a database and put it into a javascript ticker. The data is inputted by visitors using a form. The problem is the javascript wont run when the data has <br /> in it.
var marqueecontent='<?php echo "".nl2br($row["EventText"]).""; ?>'
I have the following Javascript code to write a code to the page using InnerHTML. But instead of writing the code, it shows the content of the iframe. How can I make the code write straight text of the HTML code...
I found a regular expression from a website that says it can be used to remove all HTML tags, but I would like to understand what each of the symbols mean. I tried to search on web but i was so confused about it. Does anyone have a clue what each symbol means and how does it find all html tags?
I have an existing website I an trying to modify. In speedscript I have my include libraries and a veriable. Then I need to do an href with a link I have the code as follows <a href="WI_testweb/" + "custno" + ".xls">Matrix</a> The custno is the variable. Is there a way of doing this since the way I an trying is not working?
When at the root of a site, without specifying a filename, a usual default of index.html (or even .htm) is loaded; however index.html does not appear in the location.href or location.pathname properties - only what you see in the browser address bar. I only have access to client-side Javascript (no server-side stuff at all).
Is there a way of getting this default filename from client-side JavaScript?
The 'validate' function would then store the reference to the field and the validation information. On submit, we validate all the fields by searching all the references to see if they're in the form we want. (Have to work that one out too!)
I'd prefer not to have to add script elements to do the validation. I'd prefer to be able to store it in an attibute to the field. Of course I could add it to an eventhandler for the field such as: <INPUT type="text" name="state" size=4 onFocus="add_validation(this, "format:AAA?")">
But that's still messier than I'd like it. Of course, all JS cases, add_validation would have to check to see if it already knew about the field!
The following is my javascript code to extend a form:
[Code]...
Everything works fine except for the counter/adding on to theName ( newField[i].name = theName + counter). I know exactly what the problem is... I just don't know how to fix it. If I remove the li tags, the counter will work fine and increment each "name". As soon as I put the li (see code above) tags back (or any html tag - I have tested others as well) - it breaks again and won't increment the name - it just submits the names without numbers and alas I have no usable post data. how to keep the html formatting there and still get the counter to increment the name?
I have a text area that I want to add simple html formatting buttons to.The user should be able to:- highlight text and click a 'bold' button- highlight text and click 'itallic' button- Add bulleted list- LinkI've looked at a number of WYSIWYG javascript examples, but they seem to accept Microsoft Word formatting, which I dont want
Hi I'm new to the development world and have bumped into a tough problem for myself. I'm attempting to display external RSS feeds on my site using AJAX. The 'title' and 'link' tags from the XML file appear on my page without any problem. However, unlike the 'title' and 'link' tags, some of the 'description' tags contain HTML.
This seems to be an issue when I'm trying to display the content within the description tags. As you can see, I embarrassingly tried enclosing the variable newtext2 in CDATA tags to no avail. Since I do not directly have access to this RSS file (other than asking my friend if I can edit it), is there a way for me to display the HTML content within the 'description' tags strictly via JavaScript?
Code: function getXMLHTTPRequest() { try { req = new XMLHttpRequest(); /* e.g. Firefox */ } catch(e) {
I need to remove TR elements from parent table but the problem is there are no table ID/Name.Is it possible to perform it? i need remove red marked block... what scrip i have to use if i will put it to the green block?