Results 1 to 4 of 4
-
02-22-2011, 01:36 PM #1
- Join Date
- Apr 2008
- Location
- Boston, USA
- Posts
- 13,176
- Thanks
- 744
- Thanked 701 Times in 550 Posts
- Blog Entries
- 4
- Feedback Score
- 4 (100%)
innerText Does Not Work on FireFox
If you happen to try use the JavaScript property innerText on an element you wont get it work with FireFox browser.
The reason is FireFox does not have a property innerText, rather they use a property called textContent.
There are many ways to solve this problem.
Option 1:
Use JQuery.
Example:
$(document).ready(function() {
$('myElementId').text("My Text or Whatever");
});
Option 2:
Create a JavaScript function, and call it when you need.
function ChangeContent(elem, content) {
if (document.all)
elem.innerText = content;
else
elem.textContent = content;
}
There are many other ways as well.Free Classified Ads & BUSINESS/PROFESSIONAL SOCIAL NETWORK
-
02-23-2011, 02:32 AM #2
Banned
- Join Date
- Jun 2010
- Location
- USA
- Posts
- 194
- Thanks
- 0
- Thanked 1 Time in 1 Post
- Feedback Score
- 0
-
03-23-2011, 07:47 AM #3
Sophomore
- Join Date
- Mar 2011
- Posts
- 90
- Thanks
- 0
- Thanked 1 Time in 1 Post
- Feedback Score
- 0
Yes, this works. Almost all browsers support this.
█ A home to Virtual Machines! █ Onshore/Offshore Managed VPS █ Managed HardCore Ultimate VPS Offshore/Onshore
-
04-06-2011, 08:41 AM #4
Junior
- Join Date
- Apr 2011
- Posts
- 332
- Thanks
- 0
- Thanked 2 Times in 2 Posts
- Feedback Score
- 0
Yes these are really easy for solving these types of problem,thanks a lot for sharing your knowledge...............
Similar Threads
-
Home Based Ad Posting Work - Copy Paste Work From Home No Target
By riteshp09 in forum Make Money OnlineReplies: 12Last Post: 10-25-2011, 08:41 AM -
Add-ons for Firefox
By BrainPulse in forum Search Engine OptimizationReplies: 14Last Post: 06-29-2009, 01:39 AM -
IE Vs Firefox
By Amit.Verma in forum General TalkReplies: 16Last Post: 03-04-2009, 07:29 PM -
30 FireFox Add Ons to do just about anything
By himoacs in forum All Other Search EnginesReplies: 3Last Post: 11-11-2008, 07:05 AM -
FireFox 3 or Opera 9.5?
By Amirmullick3 in forum All Other Search EnginesReplies: 3Last Post: 07-23-2008, 06:44 AM


Reply With Quote

