I want to be able to display an embedded video on a web page but i want the URL to be different based on the source IP visting the web page.Can this be done in javascript?Example: If someone from inside our network (one IP address on the outside) visits our external web page (hosted externally) visits a web page with one of the embedded videos the URL and code will serve up a locally hosted video. (WMV format)
I have alot of home videos I want to put on my website, and it seems that the easiest way to do it would be to embed it onto my website using HTML script. Problem is, I have no clue how to convert in into HTML scrip
i need an event based calender using open source how can i create is there any free open source event based calender is there user need to boook and block his dates and edit and book the dates for his requirements
I got some code that loads divs from other web pages into a particular div in my main page. In other words, I click on a button, and this tells jquery to load afragment of a particular page into my main page. For instance if I have 5 web pages onrock stars, I could have 5 buttons, and each button could load one rockstar's biography into a div on the main page (and replace whatever was there before). This works, and I do see the content that it loaded. But when I do 'view source' in IE, I do not see that content (the bio of the rock star). Another clue that this content is not really there, is when I try and run some code on that content. The content (from those external pages) have divs with specific names, and I try and make them into collapsible panels by running the following short function:
i don't know so much about jquery so just i use them with indication from their web site. so my problem is how can i use multiple source of jquery without one source stop the other,and that what i need:
recently i noticed that all of my embedded JavaScript code and external style sheets are being shown IN "view source."
this happens in all browsers ( IE, FF, Chrome, and Safari [windows]) ... oddly enough it only happens when viewing on my vista or win2k3 machines. is this something added to these OS's or the result of an installed program? has anyone seen this before?
I am having an issue with flash that are being called using javascript not playing .
Here is an example of one of the pages: [url]
This page is referencing a file called terry.js
For some reason the flash banners we use work just fine: [url]
Its only the videos that aren't working. We are referencing the videos the same way we reference the banners with the exception of the their class names.
The weird thing is that these videos were working just fine last week but now they simply do not display.
I've been trying to add embedded youtube videos to the carousel but so far without success. The videos are all over the screen, even when I wrap them in div. Has anyone ever done this and could help me?
what is the best way to play videos in an html page?? i need to play videos in my site... what is the fastest way to play videos in a normal speed (not slowly)
Is there anyway i can load or swap between videos on a main flv player by clicking on there assign buttons with javascript. I have a page in my portfolio which have three icon that when click should player a video into the main player on that page,
I have a question about using embedded Google Videos on my site. Does anyone have tips for allowing user to switch between videos (5) on the same page? The caveat is that only one would be showing at a time. I imagine it would require javascript coding. If so, would you have any examples?
I will have a group of 20 items and the user will be able to select up to three of them. After clicking a compare button, it would load a video for each item and play them back one right after another, seamlessly with no transition.
Is this possible using JQuery? Would a plugin be needed?
I have a website that I frequently visit (FWIW, Firefox 3.x is my browser of choice) with many image sources referring to URLs that end with "-thumbnail.jpg". However, for better image quality, I am trying to use Greasemonkey to replace all instances of "-thumbnail.jpg" in the source of images on this site with "-bigthumbnail.jpg". The closest I could think of was to somehow use getElementsByTagName and innerHTML.replace, but realized that innerHTML does not do HTML, only content.
Below is as far as I tried to get on my own,
var as,ae; as = document.getElementsByTagName("img"); for (var i = 0; i < as.length; i++) { ae = as[i]; ae.innerHTML = ae.innerHTML.replace(/-thumbnail/gi, "-bigthumbnail"); } })();
I'm writing a blog post that uses multiple videos from YouTube and Yahoo Video, but I'm not happy with how long it takes the page to render. Apart from using an ajax-y method to load the videos, are there any tricks that would make the page load quicker with multiple videos from different sources?
Videos inside tabs play at the same time in IE but works fine in Mozila Firefox : I'm using Simple Tabs with CSS & jQuery but I am having issue with I.E., Chrome I've videos in 3 different tabs, but in I.E & Chrome all tabs starting playing when pages loads but in Mozila Firefox it starts playing when u click on tab. I want each tab to starts works when someone click on it (starts fresh).
Videos inside tabs play at the same time in IE but works fine in Mozila Firefox : I'm using Simple Tabs w/ CSS & jQuery but I’m having issue with I.E , Chrome I’ve videos in 3 different tabs , but in I.E & Chrome all tabs starting playing when pages loads but in Mozila Firefox it starts playing when u click on tab. I want each tab to starts works when someone click on it (starts fresh)
Has anyone ever had problems with changing the src of an embed after the page has loaded?.
I have had this problem 2 times now and in result have had to actually reinitialise the embed on the page with its new src. Is there not a way round this which will save alot less time and alot less coding.
I have spent a very long time looking at it but I still can't figure it out. The problem is with line with <embed> tag.My purpose is to open a swf flash in a new popup window such that it must have a Pretty title name (instead of its addresss). Since opening that SWF directly does not leave me the option of change the popup title , so I use the above method...
I have a flash file that reads an xml file and writes the text on the flash.The problem I have is when the client does not have the font that I'm using.I looked on many websites and they always say you have to do the following Open the Library panel (Ctrl+L).Add a font to your library - click the options menu in the upper right corner of the panel and select New Font from the menu.In the Font Symbol Properties dialog box select the font, size and style that you want and give the font combination a name. Click OK to close the dialog box.
Right-click the font symbol in the library and select Linkage from the contextual menu.In the Linkage Properties dialog box, click the Export for ActionScript button to enable both the Identifier and AS 2.0 Class text input fields. Leave the default Identifier value and click OK to close the dialog box.Select the text tool from the Tools panel and draw a dynamic text field on the Stage.Give the text field an instance name of "my_txt". In the Font menu select the symbol name you gave the embedded font earlier. You should see a little asterisk (*) beside the name.In the Property inspector set the font size and style to match those in the Font Symbol Properties dialog box earlier.Open the Actions Panel and add the following code to Frame 1 of your Flash document:
But this only works if you create those text fields on the flash scene.In my case, I only have an action script that reads that xml file and writes the text on the file. I don't need to manually create those "dynamic" text fields.